diff options
Diffstat (limited to 'lib/map.js')
-rw-r--r-- | lib/map.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ -import mapLimit from './mapLimit'; -import doLimit from './internal/doLimit'; +import doParallel from './internal/doParallel'; +import map from './internal/map'; /** * Produces a new collection of values by mapping each value in `coll` through @@ -37,4 +37,4 @@ import doLimit from './internal/doLimit'; * // results is now an array of stats for each file * }); */ -export default doLimit(mapLimit, Infinity); +export default doParallel(map); |