Reset resIndex after recursive baseFlatten.

This commit is contained in:
Justin Ridgewell
2015-05-30 14:01:14 -04:00
committed by jdalton
parent 9c339367ad
commit 29e0d37009
2 changed files with 4 additions and 3 deletions

View File

@@ -5215,12 +5215,12 @@
});
test('should support flattening of nested arrays', 3, function() {
var array = [1, [2], [3, [4]]],
expected = [1, 2, 3, [4]];
var array = [1, [2, 3], 4, [[5]]],
expected = [1, 2, 3, 4, [5]];
deepEqual(_.flatten(array), expected);
expected = [1, 2, 3, 4];
expected = [1, 2, 3, 4, 5];
deepEqual(_.flatten(array, true), expected);
deepEqual(_.flattenDeep(array), expected);
});