From 3bc27b1a02e653f6991747b4b00313910bac7af0 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 16 Jun 2013 10:24:12 -0700 Subject: [PATCH] Allow `findWhere` to be included as a lodash method in test-build.js. Former-commit-id: b69a12bac6a1a91716e4665dad39cafbaa8f88c8 --- test/test-build.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/test-build.js b/test/test-build.js index c90eac2c9..421d5b32b 100644 --- a/test/test-build.js +++ b/test/test-build.js @@ -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));