async-waterfall
Advanced tools
Comparing version 0.1.4 to 0.1.5
@@ -5,3 +5,3 @@ { | ||
"description": "Runs a list of async tasks, passing the results of each into the next one", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"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.4", | ||
"version": "0.1.5", | ||
"keywords": ["async", "waterfall", "tasks", "control", "flow"], | ||
@@ -8,0 +8,0 @@ "main": "index.js", |
@@ -32,3 +32,3 @@ // MIT license (by Elan Shanker). | ||
var _isArray = Array.isArray || function(maybeArray){ | ||
return Object.prototype.toString.call(maybeArray) === "[object Array]"; | ||
return Object.prototype.toString.call(maybeArray) === '[object Array]'; | ||
}; | ||
@@ -67,4 +67,6 @@ | ||
if (typeof define === 'function' && typeof define.amd === 'object') { | ||
define(waterfall); // RequireJS | ||
if (typeof define !== 'undefined' && define.amd) { | ||
define([], function () { | ||
return waterfall; | ||
}); // RequireJS | ||
} else if (typeof module !== 'undefined' && module.exports) { | ||
@@ -71,0 +73,0 @@ module.exports = waterfall; // CommonJS |
{ | ||
"name": "async-waterfall", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"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
7087
97