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.3.0 to 1.3.1

2

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

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

@@ -21,3 +21,3 @@ var xtend = require('xtend')

if (toCall.length === 0) {
done()
done.call(that)
released(last)

@@ -24,0 +24,0 @@ } else {

@@ -202,1 +202,12 @@ var test = require('tape')

})
test('call the callback with the given this with no data', function (t) {
t.plan(1)
var instance = parallel()
var obj = {}
instance(obj, [], 42, function done () {
t.equal(obj, this, 'this matches')
})
})
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