New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

async-co

Package Overview
Dependencies
Maintainers
2
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-co - npm Package Compare versions

Comparing version 1.3.0 to 1.4.0

4

eachOfLimit.js

@@ -6,8 +6,6 @@ "use strict";

module.exports = function *(series, n, thunk, ctx){
var res = {};
yield eachLimit(Object.keys(series), n, function* (k){
res[k] = yield thunk(series[k], k);
yield thunk(series[k], k);
}, ctx);
return Promise.resolve(res);
};
{
"name": "async-co",
"version": "1.3.0",
"version": "1.4.0",
"description": "Control flow for co with async.js (v2) signatures",

@@ -29,3 +29,5 @@ "main": "index.js",

"license": "ISC",
"dependencies": {},
"dependencies": {
"mout": "^1.0.0"
},
"devDependencies": {

@@ -36,3 +38,2 @@ "expect.js": "^0.3.1",

"mocha-plugin-co": "^1.0.0",
"mout": "^1.0.0",
"nyks": "^3.1.1"

@@ -39,0 +40,0 @@ },

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