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

curlrequest

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

curlrequest - npm Package Compare versions

Comparing version 0.1.6 to 0.1.7

24

index.js

@@ -255,1 +255,25 @@ var child = require('child_process')

/**
* A helper for handling async concurrency.
*/
module.exports.concurrent = function (input, concurrency, fn) {
if (arguments.length === 3) {
for (var i = 0; i < concurrency; i++) {
(function exec() {
check(input.shift(), function () {
process.nextTick(exec);
});
})();
}
} else {
for (var i = 0; i < concurrency; i++) {
(function exec() {
check(function () {
process.nextTick(exec);
});
})();
}
}
};

2

package.json
{ "name" : "curlrequest",
"description" : "A curl wrapper for node",
"version" : "0.1.6",
"version" : "0.1.7",
"homepage" : "https://github.com/chriso/curlrequest",

@@ -5,0 +5,0 @@ "author" : "Chris O'Hara <cohara87@gmail.com>",

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