Socket
Socket
Sign inDemoInstall

readable-stream

Package Overview
Dependencies
5
Maintainers
6
Versions
103
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.0.0-rc.2 to 3.0.0-rc.3

6

lib/_stream_readable.js

@@ -698,3 +698,3 @@ // Copyright Joyent, Inc. and other Node contributors.

function pipeOnDrain(src) {
return function () {
return function pipeOnDrainFunctionResult() {
var state = src._readableState;

@@ -916,4 +916,4 @@ debug('pipeOnDrain', state.awaitDrain);

if (this[i] === undefined && typeof stream[i] === 'function') {
this[i] = function (method) {
return function () {
this[i] = function methodWrap(method) {
return function methodWrapReturnFunction() {
return stream[method].apply(stream, arguments);

@@ -920,0 +920,0 @@ };

@@ -224,3 +224,3 @@ // Copyright Joyent, Inc. and other Node contributors.

Object.defineProperty(WritableState.prototype, 'buffer', {
get: internalUtil.deprecate(function () {
get: internalUtil.deprecate(function writableStateBufferGetter() {
return this.getBuffer();

@@ -227,0 +227,0 @@ }, '_writableState.buffer is deprecated. Use _writableState.getBuffer ' + 'instead.', 'DEP0003')

{
"name": "readable-stream",
"version": "3.0.0-rc.2",
"version": "3.0.0-rc.3",
"description": "Streams3, a user-land copy of the stream library from Node.js",

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

@@ -18,3 +18,3 @@ # readable-stream

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

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc