summaryrefslogtreecommitdiff
path: root/lib/map.js
diff options
context:
space:
mode:
authorGraeme Yeates <yeatesgraeme@gmail.com>2015-12-23 18:29:52 -0500
committerGraeme Yeates <yeatesgraeme@gmail.com>2015-12-29 16:48:48 -0500
commit1448f24a5e7d5c4b9ff56ef573d35291511c2a71 (patch)
tree3efbaea4ef8ac80ef7c37bf1bcbdeeee5dd7dd81 /lib/map.js
parent18e61d4f07f48604601f2effdbe2a7e188d14d4a (diff)
downloadasync-1448f24a5e7d5c4b9ff56ef573d35291511c2a71.tar.gz
Fix implementations (test green lights)
Diffstat (limited to 'lib/map.js')
-rw-r--r--lib/map.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/map.js b/lib/map.js
index 9a02059..2a8449c 100644
--- a/lib/map.js
+++ b/lib/map.js
@@ -1,4 +1,6 @@
'use strict';
-var mapAsync = require('async.util.mapasync');
-var doParallel = require('async.util.doparallel');
-export default doParallel(mapAsync);
+
+import doParallel from './internal/doParallel';
+import map from './internal/map';
+
+export default doParallel(map);