readable-stream
Advanced tools
Comparing version 2.3.0 to 2.3.1
@@ -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> */ |
{ | ||
"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 |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
87064
1885