(coll, limit, iteratee, callback)
| 23 | * `iteratee` functions have finished, or an error occurs. Invoked with (err). |
| 24 | */ |
| 25 | export default function eachLimit(coll, limit, iteratee, callback) { |
| 26 | eachOfLimit(limit)(coll, withoutIndex(wrapAsync(iteratee)), callback); |
| 27 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…