Skip to content

Commit

Permalink
name function
Browse files Browse the repository at this point in the history
  • Loading branch information
feross committed Apr 26, 2018
1 parent b7aafdb commit 61c9408
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion index.js
@@ -1,4 +1,6 @@
module.exports = function (tasks, limit, cb) {
module.exports = runParallelLimit

function runParallelLimit (tasks, limit, cb) {
if (typeof limit !== 'number') throw new Error('second argument must be a Number')
var results, len, pending, keys, isErrored
var isSync = true
Expand Down

0 comments on commit 61c9408

Please sign in to comment.