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.7.0 to 1.7.1

cargo.js

3

eachOfLimit.js

@@ -6,5 +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);
res[k] = yield thunk.call(ctx || this, series[k], k);
}, ctx);

@@ -11,0 +12,0 @@ return res;

{
"name": "async-co",
"version": "1.7.0",
"version": "1.7.1",
"description": "Control flow for co with async.js (v2) signatures",

@@ -5,0 +5,0 @@ "main": "index.js",

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