From fe00c628f4fcf0fb71e321934c6be8d549e46514 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 26 May 2013 23:19:10 -0700 Subject: [PATCH] Fix build. Former-commit-id: 8dfb12b5883e59111857360ee5392c62e5e9146f --- build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.js b/build.js index 4bfc5c402..8c88e6a50 100755 --- a/build.js +++ b/build.js @@ -1952,7 +1952,7 @@ _.each(['difference', 'intersection', 'uniq'], function(methodName) { if (!useLodashMethod(methodName)) { - dependencyMap[methodName] = _.without(dependencyMap[methodName], 'createCache'); + dependencyMap[methodName] = ['getIndexOf'].concat(_.without(dependencyMap[methodName], 'createCache')); } });