Allow findWhere to be included as a lodash method in test-build.js.

Former-commit-id: b69a12bac6a1a91716e4665dad39cafbaa8f88c8
This commit is contained in:
John-David Dalton
2013-06-16 10:24:12 -07:00
parent ec4c6e140b
commit 3bc27b1a02

View File

@@ -94,9 +94,6 @@
return !/^_/.test(methodName);
});
/** List of all Lo-Dash methods */
var lodashMethods = _.without(allMethods, 'findWhere');
/** List of "Arrays" category methods */
var arraysMethods = [
'compact',
@@ -321,6 +318,10 @@
'unzip'
];
/** List of all Lo-Dash methods */
var lodashMethods = allMethods.slice();
/** List of Underscore methods */
var underscoreMethods = _.without.apply(_, [allMethods].concat(lodashOnlyMethods));