Socket
Socket
Sign inDemoInstall

readable-stream

Package Overview
Dependencies
6
Maintainers
4
Versions
103
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.0.4 to 2.0.5

6

lib/_stream_readable.js

@@ -64,4 +64,5 @@ 'use strict';

var Duplex;
function ReadableState(options, stream) {
var Duplex = require('./_stream_duplex');
Duplex = Duplex || require('./_stream_duplex');

@@ -132,4 +133,5 @@ options = options || {};

var Duplex;
function Readable(options) {
var Duplex = require('./_stream_duplex');
Duplex = Duplex || require('./_stream_duplex');

@@ -136,0 +138,0 @@ if (!(this instanceof Readable))

@@ -58,4 +58,5 @@ // A bit simpler than readable streams.

var Duplex;
function WritableState(options, stream) {
var Duplex = require('./_stream_duplex');
Duplex = Duplex || require('./_stream_duplex');

@@ -168,4 +169,5 @@ options = options || {};

var Duplex;
function Writable(options) {
var Duplex = require('./_stream_duplex');
Duplex = Duplex || require('./_stream_duplex');

@@ -172,0 +174,0 @@ // Writable ctor is applied to Duplexes, though they're not

{
"name": "readable-stream",
"version": "2.0.4",
"version": "2.0.5",
"description": "Streams3, a user-land copy of the stream library from iojs v2.x",

@@ -10,3 +10,3 @@ "main": "readable.js",

"isarray": "0.0.1",
"process-nextick-args": "~1.0.0",
"process-nextick-args": "~1.0.6",
"string_decoder": "~0.10.x",

@@ -13,0 +13,0 @@ "util-deprecate": "~1.0.1"

Sorry, the diff of this file is not supported yet

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