1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-11 06:35:45 +01:00

Speed up completion scrolling more.

This commit is contained in:
Kris Maglione
2008-11-27 01:18:33 +00:00
parent 424909162d
commit 0eafcd8656
6 changed files with 48 additions and 45 deletions

View File

@@ -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 = [];