1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 15:24:12 +01:00

More on last commit.

This commit is contained in:
Kris Maglione
2011-02-11 11:57:13 -05:00
parent d062633346
commit d64b0b8609

View File

@@ -80,8 +80,8 @@ var AbbrevHive = Class("AbbrevHive", Contexts.Hive, {
*/
get merged() {
// Wth? --Kris;
let map = array(values(this._store)).map(Iterator).map(iter.toArray)
.flatten().toObject();
let map = values(this._store).map(Iterator).map(iter.toArray)
.flatten().toObject();
return Object.keys(map).sort().map(function (k) map[k]);
},