diff options
author | Graeme Yeates <yeatesgraeme@gmail.com> | 2015-12-23 18:29:52 -0500 |
---|---|---|
committer | Graeme Yeates <yeatesgraeme@gmail.com> | 2015-12-29 16:48:48 -0500 |
commit | 1448f24a5e7d5c4b9ff56ef573d35291511c2a71 (patch) | |
tree | 3efbaea4ef8ac80ef7c37bf1bcbdeeee5dd7dd81 /lib/applyEach.js | |
parent | 18e61d4f07f48604601f2effdbe2a7e188d14d4a (diff) | |
download | async-1448f24a5e7d5c4b9ff56ef573d35291511c2a71.tar.gz |
Fix implementations (test green lights)
Diffstat (limited to 'lib/applyEach.js')
-rw-r--r-- | lib/applyEach.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/applyEach.js b/lib/applyEach.js index 90d2d6f..2c5f001 100644 --- a/lib/applyEach.js +++ b/lib/applyEach.js @@ -1,6 +1,6 @@ 'use strict'; -import eachOf from './eachof'; -var applyEach = require('async.util.applyeach'); +import applyEach from './internal/applyEach'; +import eachOf from './eachOf'; -export default applyEach(eachOf); +export default applyEach(eachOf); |