summaryrefslogtreecommitdiff
path: root/build-es/eachLimit.js
diff options
context:
space:
mode:
Diffstat (limited to 'build-es/eachLimit.js')
-rw-r--r--build-es/eachLimit.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/build-es/eachLimit.js b/build-es/eachLimit.js
deleted file mode 100644
index 5009cc3..0000000
--- a/build-es/eachLimit.js
+++ /dev/null
@@ -1,9 +0,0 @@
-'use strict';
-
-import eachOfLimit from './internal/eachOfLimit';
-import withoutIndex from './internal/withoutIndex';
-
-
-export default function eachLimit(arr, limit, iterator, cb) {
- return eachOfLimit(limit)(arr, withoutIndex(iterator), cb);
-}