async-waterfall
Advanced tools
Comparing version 0.1.3 to 0.1.4
@@ -5,3 +5,3 @@ { | ||
"description": "Runs a list of async tasks, passing the results of each into the next one", | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"keywords": ["async", "waterfall", "tasks", "control", "flow"], | ||
@@ -8,0 +8,0 @@ "main": "index.js", |
@@ -5,3 +5,3 @@ { | ||
"description": "Runs a list of async tasks, passing the results of each into the next one", | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"keywords": ["async", "waterfall", "tasks", "control", "flow"], | ||
@@ -8,0 +8,0 @@ "main": "index.js", |
@@ -68,3 +68,3 @@ // MIT license (by Elan Shanker). | ||
define(waterfall); // RequireJS | ||
} else if (typeof module === 'object' && module.exports) { | ||
} else if (typeof module !== 'undefined' && module.exports) { | ||
module.exports = waterfall; // CommonJS | ||
@@ -71,0 +71,0 @@ } else { |
{ | ||
"name": "async-waterfall", | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"description": "Runs a list of async tasks, passing the results of each into the next one", | ||
@@ -5,0 +5,0 @@ "author": { |
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
7068