summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/lodash/intersectionWith.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/node_modules/lodash/intersectionWith.js')
-rw-r--r--tools/eslint/node_modules/lodash/intersectionWith.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/eslint/node_modules/lodash/intersectionWith.js b/tools/eslint/node_modules/lodash/intersectionWith.js
index 2985e3fcb0..bc195dc999 100644
--- a/tools/eslint/node_modules/lodash/intersectionWith.js
+++ b/tools/eslint/node_modules/lodash/intersectionWith.js
@@ -1,6 +1,6 @@
var arrayMap = require('./_arrayMap'),
- baseCastArrayLikeObject = require('./_baseCastArrayLikeObject'),
baseIntersection = require('./_baseIntersection'),
+ castArrayLikeObject = require('./_castArrayLikeObject'),
last = require('./last'),
rest = require('./rest');
@@ -27,7 +27,7 @@ var arrayMap = require('./_arrayMap'),
*/
var intersectionWith = rest(function(arrays) {
var comparator = last(arrays),
- mapped = arrayMap(arrays, baseCastArrayLikeObject);
+ mapped = arrayMap(arrays, castArrayLikeObject);
if (comparator === last(mapped)) {
comparator = undefined;