simpleasync
Advanced tools
Comparing version 0.0.5 to 0.0.6
@@ -90,3 +90,3 @@ | ||
data = newdata; | ||
setImmediate(doStep); | ||
setTimeout(doStep, 0); | ||
} | ||
@@ -106,3 +106,3 @@ | ||
data = newdata; | ||
setImmediate(doStep); | ||
setTimeout(doStep, 0); | ||
} | ||
@@ -124,3 +124,3 @@ } | ||
data = []; | ||
setImmediate(doStep); | ||
setTimeout(doStep, 0); | ||
return; | ||
@@ -144,3 +144,3 @@ } | ||
data = newdata; | ||
setImmediate(doStep); | ||
setTimeout(doStep, 0); | ||
} | ||
@@ -157,3 +157,3 @@ } | ||
data = newdata; | ||
setImmediate(doStep); | ||
setTimeout(doStep, 0); | ||
@@ -171,3 +171,3 @@ return; | ||
data = newdata; | ||
setImmediate(doStep); | ||
setTimeout(doStep, 0); | ||
}); | ||
@@ -177,3 +177,3 @@ } | ||
data = fn(data); | ||
setImmediate(doStep); | ||
setTimeout(doStep, 0); | ||
} | ||
@@ -220,3 +220,3 @@ } | ||
var runner = new Runner(fns, failfn); | ||
setImmediate(runner.run(data)); | ||
setTimeout(runner.run(data), 0); | ||
@@ -223,0 +223,0 @@ return this; |
{ "name": "simpleasync" | ||
, "description": "Simple flow library to chain and run functions with asynchronous calls" | ||
, "keywords": [ "node", "asynchronous", "library" ] | ||
, "version": "0.0.5" | ||
, "version": "0.0.6" | ||
, "author": "Angel 'Java' Lopez <webmaster@ajlopez.com> (http://www.ajlopez.com)" | ||
, "repository": { "type": "git", "url": "git://github.com/ajlopez/SimpleAsync.git" } | ||
, "main": "./lib/simpleasync.js" | ||
, "engines": { "node": ">= 0.6.0 && < 0.11.0" } | ||
, "engines": { "node": ">= 0.6.0 && < 0.13.0" } | ||
, "scripts": { | ||
@@ -15,4 +15,4 @@ "test": "simpleunit test" | ||
, "devDependencies": { | ||
"simpleunit": "0.0.4" | ||
"simpleunit": "0.0.6" | ||
} | ||
} |
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
19800