Removing length assignment in baseFlatten for a perf win.

This commit is contained in:
Tim D
2015-04-29 21:25:09 +10:00
committed by jdalton
parent 8ae7d8aa07
commit 6cab7ceb0f

View File

@@ -2191,7 +2191,6 @@
var valIndex = -1,
valLength = value.length;
result.length += valLength;
while (++valIndex < valLength) {
result[++resIndex] = value[valIndex];
}