Socket
Socket
Sign inDemoInstall

run-parallel

Package Overview
Dependencies
0
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.5 to 1.1.6

4

index.js

@@ -36,3 +36,3 @@ module.exports = function (tasks, cb) {

keys.forEach(function (key) {
tasks[key](each.bind(undefined, key))
tasks[key](function (err, result) { each(key, err, result) })
})

@@ -42,3 +42,3 @@ } else {

tasks.forEach(function (task, i) {
task(each.bind(undefined, i))
task(function (err, result) { each(i, err, result) })
})

@@ -45,0 +45,0 @@ }

{
"name": "run-parallel",
"description": "Run an array of functions in parallel",
"version": "1.1.5",
"version": "1.1.6",
"author": {

@@ -6,0 +6,0 @@ "name": "Feross Aboukhadijeh",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc