Fixin new map imports.

This commit is contained in:
Michał Lipiński
2017-04-18 09:33:58 +02:00
parent e5e8f35c06
commit bb059c0f64
14 changed files with 28 additions and 28 deletions

View File

@@ -1,4 +1,4 @@
import arrayMap from './arrayMap.js'
import map from '../map.js'
import baseIndexOf from './baseIndexOf.js'
import baseIndexOfWith from './baseIndexOfWith.js'
import copyArray from './copyArray.js'
@@ -27,7 +27,7 @@ function basePullAll(array, values, iteratee, comparator) {
values = copyArray(values)
}
if (iteratee) {
seen = arrayMap(array, (value) => iteratee(value))
seen = map(array, (value) => iteratee(value))
}
while (++index < length) {
let fromIndex = 0