Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

simpleasync

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simpleasync - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

16

lib/simpleasync.js

@@ -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"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc