Skip to content

Commit

Permalink
code style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
liuyl committed Jul 27, 2013
1 parent 10695ba commit 19e8412
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion underscore.js
Expand Up @@ -84,7 +84,7 @@
} else {
var keys = _.keys(obj);
for (var i = 0, length = keys.length; i < length; i++) {
if (iterator.call(context, obj[keys[i]], keys[i], obj) === breaker) return ;
if (iterator.call(context, obj[keys[i]], keys[i], obj) === breaker) return;
}
}
};
Expand Down

0 comments on commit 19e8412

Please sign in to comment.