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

fastparallel

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fastparallel - npm Package Compare versions

Comparing version 1.4.0 to 1.5.0

2

package.json
{
"name": "fastparallel",
"version": "1.4.0",
"version": "1.5.0",
"description": "Zero-overhead asynchronous parallel/each/map function call",

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

@@ -17,6 +17,7 @@ var xtend = require('xtend')

function parallel (that, toCall, arg, done) {
var holder = last || new Holder(release)
var holder = last
var i
last = null
last = holder.next || new Holder(release)
holder.next = null

@@ -45,3 +46,3 @@ if (toCall.length === 0) {

function release (holder) {
last = holder
last.next = holder
released()

@@ -55,2 +56,3 @@ }

this._callThat = null
this.next = null

@@ -76,2 +78,3 @@ var that = this

this._callThat = null
this.next = null

@@ -78,0 +81,0 @@ var that = this

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