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

Fix minefield.

This commit is contained in:
Kris Maglione
2014-09-16 13:19:54 -07:00
parent 0f41b99a03
commit 3ab2fcf8e6
11 changed files with 24 additions and 23 deletions

View File

@@ -591,7 +591,7 @@ function curry(fn, length, self, acc) {
if (args.length == 0)
return close(self || this, curried);
let args = acc.concat(args);
args = acc.concat(args);
if (args.length >= length)
return fn.apply(self || this, args);