reverting a non-important change that broke reduceRight in IE.

This commit is contained in:
Jeremy Ashkenas
2011-07-13 12:58:36 -04:00
parent 19beb29283
commit 7eb7b08f71

View File

@@ -79,8 +79,6 @@ $(document).ready(function() {
ok(_.reduce(null, function(){}, 138) === 138, 'handles a null (with initial value) properly');
// Sparse arrays:
equals(_.reduce([], function(){}, undefined), undefined, 'undefined can be passed as a special case');
var sparseArray = [];
sparseArray[100] = 10;
sparseArray[200] = 20;