Remove array and object pools.

This commit is contained in:
John-David Dalton
2014-02-21 22:26:17 -08:00
parent 24240bfba4
commit 6854fee73e
7 changed files with 153 additions and 384 deletions

View File

@@ -889,7 +889,7 @@
indexOf = getIndexOf(),
length = array ? array.length : 0,
result = [],
seen = (!isSorted && callback) ? [] : result;
seen = (callback && !isSorted) ? [] : result;
while (++index < length) {
var value = array[index],
@@ -1969,7 +1969,7 @@
* @memberOf _
* @alias unzip
* @category Arrays
* @param {...Array} [array] Arrays to process.
* @param {...Array} [array] The arrays to process.
* @returns {Array} Returns a new array of grouped elements.
* @example
*