Skip to content

Commit

Permalink
s/l/length
Browse files Browse the repository at this point in the history
  • Loading branch information
jashkenas committed Jul 24, 2013
1 parent 6bc3ae4 commit b450f13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion underscore.js
Expand Up @@ -756,7 +756,7 @@
_.values = function(obj) {
var keys = _.keys(obj);
var values = [];
for (var i = 0, l = keys.length; i < l; i++) {
for (var i = 0, length = keys.length; i < length; i++) {
values[i] = obj[keys[i]];
}
return values;
Expand Down

0 comments on commit b450f13

Please sign in to comment.