Socket
Socket
Sign inDemoInstall

pull-stream

Package Overview
Dependencies
Maintainers
1
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pull-stream - npm Package Compare versions

Comparing version 3.3.3 to 3.4.0

sinks/collect.js

2

index.js

@@ -0,1 +1,3 @@

'use strict'
var sources = require('./sources')

@@ -2,0 +4,0 @@ var sinks = require('./sinks')

2

package.json
{
"name": "pull-stream",
"description": "minimal pull stream",
"version": "3.3.3",
"version": "3.4.0",
"homepage": "https://github.com/dominictarr/pull-stream",

@@ -6,0 +6,0 @@ "repository": {

@@ -0,1 +1,3 @@

'use strict'
module.exports = function pull (a) {

@@ -2,0 +4,0 @@ var length = arguments.length

@@ -5,6 +5,7 @@ # pull-stream

In [classic-streams](https://github.com/nodejs/node-v0.x-archive/blob/v0.8/doc/api/stream.markdown),
In [classic-streams](1),
streams _push_ data to the next stream in the pipeline.
In [new-streams](https://github.com/nodejs/node-v0.x-archive/blob/v0.10/doc/api/stream.markdown),
In [new-streams](https://github.com/joyent/node/blob/v0.10/doc/api/stream.markdown),
data is pulled out of the source stream, into the destination.
In [new-classic-streams](
`pull-stream` is a minimal take on streams,

@@ -11,0 +12,0 @@ pull streams work great for "object" streams as well as streams of raw text or binary data.

@@ -36,3 +36,3 @@ var pull = require('../')

pull(
pull.readArray(['billy', 'joe', 'zeke']),
pull.values(['billy', 'joe', 'zeke']),
pipeline

@@ -39,0 +39,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