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

readable-stream

Package Overview
Dependencies
Maintainers
6
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

readable-stream - npm Package Compare versions

Comparing version 2.3.0 to 2.3.1

2

lib/_stream_readable.js

@@ -53,2 +53,4 @@ // Copyright Joyent, Inc. and other Node contributors.

// TODO(bmeurer): Change this back to const once hole checks are
// properly optimized away early in Ignition+TurboFan.
/*<replacement>*/

@@ -55,0 +57,0 @@ var Buffer = require('safe-buffer').Buffer;

@@ -46,5 +46,9 @@ // Copyright Joyent, Inc. and other Node contributors.

function CorkedRequest(state) {
var _this = this;
this.next = null;
this.entry = null;
this.finish = onCorkedFinish.bind(undefined, this, state);
this.finish = function () {
onCorkedFinish(_this, state);
};
}

@@ -51,0 +55,0 @@ /* </replacement> */

2

package.json
{
"name": "readable-stream",
"version": "2.3.0",
"version": "2.3.1",
"description": "Streams3, a user-land copy of the stream library from Node.js",

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

# readable-stream
***Node-core v8.1.0 streams for userland*** [![Build Status](https://travis-ci.org/nodejs/readable-stream.svg?branch=master)](https://travis-ci.org/nodejs/readable-stream)
***Node-core v8.1.2 streams for userland*** [![Build Status](https://travis-ci.org/nodejs/readable-stream.svg?branch=master)](https://travis-ci.org/nodejs/readable-stream)

@@ -21,3 +21,3 @@

Full documentation may be found on the [Node.js website](https://nodejs.org/dist/v8.1.0/docs/api/stream.html).
Full documentation may be found on the [Node.js website](https://nodejs.org/dist/v8.1.2/docs/api/stream.html).

@@ -24,0 +24,0 @@ If you want to guarantee a stable streams base, regardless of what version of

@@ -6,4 +6,4 @@ var Stream = require("stream")

module.exports = Stream && Stream.Writable || Writable
} else {
module.exports = Writable
}
module.exports = Writable
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