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 './.internal/arrayMap.js'
import map from './map.js'
import unzip from './unzip.js'
/**
@@ -25,7 +25,7 @@ function unzipWith(array, iteratee) {
return []
}
const result = unzip(array)
return arrayMap(result, (group) => iteratee.apply(undefined, group))
return map(result, (group) => iteratee.apply(undefined, group))
}
export default unzipWith