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

pipe-iterators

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pipe-iterators - npm Package Compare versions

Comparing version 1.2.0 to 1.3.0

14

package.json
{
"name": "pipe-iterators",
"version": "1.2.0",
"version": "1.3.0",
"description": "Like underscore for Node streams. Map, reduce, filter, fork, pipeline and other utility functions for iterating over object mode streams.",

@@ -20,3 +20,3 @@ "main": "index.js",

],
"license": "BSD",
"license": "BSD-3-Clause",
"bugs": {

@@ -27,9 +27,9 @@ "url": "https://github.com/mixu/pipe-iterators/issues"

"dependencies": {
"clone": "0.1.18",
"merge-stream": "0.1.6",
"clone": "~1.0.2",
"merge-stream": "~1.0.0",
"miniq": "~1.0.0",
"readable-stream": "*",
"through2": "*",
"xtend": "4.0.0"
"readable-stream": "~2.0.6",
"through2": "~2.0.1",
"xtend": "~4.0.1"
}
}

@@ -26,2 +26,6 @@ # pipe-iterators

`v1.3.0`: Updated dependencies to more recent versions - thanks @asgoth!
`v1.2.0`: added pi.fromAsync(callable)
`v1.1.0`:

@@ -28,0 +32,0 @@

@@ -17,3 +17,4 @@ var assert = require('assert'),

function(obj) { return obj % 3 == 0; },
pi.toArray(threes)
pi.toArray(threes),
pi.devnull()
);

@@ -37,3 +38,4 @@

function(obj) { return obj % 2 == 0; },
pi.toArray(twos)
pi.toArray(twos),
pi.devnull()
);

@@ -40,0 +42,0 @@

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