mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-11 15:05:47 +01:00
Speed up completion scrolling more.
This commit is contained in:
@@ -48,6 +48,13 @@ const util = { //{{{
|
||||
yield ary[i];
|
||||
},
|
||||
|
||||
iterator2: function (ary)
|
||||
{
|
||||
let length = ary.length;
|
||||
for (let i = 0; i < length; i++)
|
||||
yield [i, ary[i]];
|
||||
},
|
||||
|
||||
uniq: function (ary, unsorted)
|
||||
{
|
||||
let ret = [];
|
||||
|
||||
Reference in New Issue
Block a user