mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-09 09:34:12 +01:00
Death to for each.
This commit is contained in:
@@ -155,7 +155,7 @@ var Template = Module("Template", {
|
||||
|
||||
let res = [];
|
||||
let n = 0;
|
||||
for each (let i in Iterator(iter)) {
|
||||
for (let i in Iterator(iter)) {
|
||||
let val = func(i, n);
|
||||
if (val == undefined)
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user