summaryrefslogtreecommitdiff
path: root/lib/internal/parallel.js
diff options
context:
space:
mode:
authorGraeme Yeates <yeatesgraeme@gmail.com>2016-11-17 09:53:55 -0500
committerGraeme Yeates <yeatesgraeme@gmail.com>2016-11-17 09:53:55 -0500
commitb6d0528c9c398823c3f6fdf7523b74b916ceb95c (patch)
tree583847619c520b772bacbf2d204b81112055792c /lib/internal/parallel.js
parent665327e07e2437ef7959af6544ed02594cfe76dd (diff)
downloadasync-b6d0528c9c398823c3f6fdf7523b74b916ceb95c.tar.gz
Cleanup some of the dependency importslib-import-cleanups
Saves 800 bytes on min.js
Diffstat (limited to 'lib/internal/parallel.js')
-rw-r--r--lib/internal/parallel.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/internal/parallel.js b/lib/internal/parallel.js
index 1b91b60..d7c5cd9 100644
--- a/lib/internal/parallel.js
+++ b/lib/internal/parallel.js
@@ -1,6 +1,6 @@
import noop from 'lodash/noop';
import isArrayLike from 'lodash/isArrayLike';
-import rest from 'lodash/_baseRest';
+import rest from './rest';
export default function _parallel(eachfn, tasks, callback) {
callback = callback || noop;