This commit is contained in:
rolux 2012-05-25 11:44:25 +02:00
parent e73b7efc2f
commit f2be6ebcc0

View file

@ -54,11 +54,11 @@
if (key in collection) { if (key in collection) {
try { try {
iterator.call(that, collection[key], key, collection); iterator.call(that, collection[key], key, collection);
} catch(error) { } catch (error) {
if (error === Ox.BreakError) { if (error === Ox.BreakError) {
i = n; i = n;
} }
throw e; throw error;
} }
} }
i++; i++;