summaryrefslogtreecommitdiff
path: root/lib/timesLimit.js
blob: dbd9664d11fe10b6a80b3b6a119f3c9d1037f0d7 (plain)
1
2
3
4
5
6
7
8
'use strict';

import mapLimit from './mapLimit';
import range from 'lodash/_baseRange';

export default function timeLimit(count, limit, iteratee, cb) {
    return mapLimit(range(0, count, 1), limit, iteratee, cb);
}