run-parallel
Advanced tools
Comparing version 1.1.3 to 1.1.4
@@ -14,3 +14,3 @@ module.exports = function (tasks, cb) { | ||
function done (err, results) { | ||
function done (err) { | ||
function end () { | ||
@@ -27,3 +27,3 @@ if (cb) cb(err, results) | ||
if (--pending === 0 || err) { | ||
done(err, results) | ||
done(err) | ||
} | ||
@@ -34,3 +34,3 @@ } | ||
// empty | ||
done(null, results) | ||
done(null) | ||
} else if (keys) { | ||
@@ -37,0 +37,0 @@ // object |
{ | ||
"name": "run-parallel", | ||
"description": "Run an array of functions in parallel", | ||
"version": "1.1.3", | ||
"version": "1.1.4", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "Feross Aboukhadijeh", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12645