summaryrefslogtreecommitdiff
path: root/build-es/eachLimit.js
blob: 5009cc3559e6ab1eead9e02d2c956f3b88de31b2 (plain)
1
2
3
4
5
6
7
8
9
'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);
}