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

pull-paramap

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pull-paramap - npm Package Compare versions

Comparing version 1.2.1 to 1.2.2

5

index.js

@@ -0,1 +1,2 @@

var looper = require('looper')
module.exports = function (map, width, inOrder) {

@@ -27,3 +28,3 @@ inOrder = inOrder === undefined ? true : inOrder

function start () {
var start = looper(function () {
started = true

@@ -53,3 +54,3 @@ if(ended) return drain()

})
}
})

@@ -56,0 +57,0 @@ return function (_abort, cb) {

7

package.json
{
"name": "pull-paramap",
"description": "parallel async map pull-stream",
"version": "1.2.1",
"version": "1.2.2",
"homepage": "https://github.com/dominictarr/pull-paramap",

@@ -20,3 +20,6 @@ "repository": {

"author": "Dominic Tarr <dominic.tarr@gmail.com> (http://dominictarr.com)",
"license": "MIT"
"license": "MIT",
"dependencies": {
"looper": "^4.0.0"
}
}

@@ -189,1 +189,14 @@ var pull = require('pull-stream')

})
test('range error', function (t) {
pull(
pull.count(10000),
paraMap(function (d, cb) {
cb(null, d*10000)
}),
pull.drain(null, function (err) {
t.end()
})
)
})
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