File tree Expand file tree Collapse file tree 4 files changed +4
-12
lines changed
Expand file tree Collapse file tree 4 files changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,8 @@ class Blob {
127127
128128 /**
129129 * @param {SourcePart[] } [sources]
130- * @param {{
130+ * @param {{]
131+ *
131132 * endings? : string,
132133 * type? : string,
133134 * }} [options]
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ const {
5656} = primordials ;
5757const config = internalBinding ( 'config' ) ;
5858const internalTimers = require ( 'internal/timers' ) ;
59- const { deprecate, lazyDOMExceptionClass } = require ( 'internal/util' ) ;
59+ const { deprecate } = require ( 'internal/util' ) ;
6060
6161setupProcessObject ( ) ;
6262
Original file line number Diff line number Diff line change 66 SymbolIterator,
77} = primordials ;
88
9- const kDestroyed = Symbol ( 'kDestroyed' ) ;
109const kIsErrored = Symbol ( 'kIsErrored' ) ;
1110const kIsReadable = Symbol ( 'kIsReadable' ) ;
1211const kIsDisturbed = Symbol ( 'kIsDisturbed' ) ;
@@ -112,14 +111,6 @@ function isReadableFinished(stream, strict) {
112111 ) ;
113112}
114113
115- function isDisturbed ( stream ) {
116- return ! ! ( stream && (
117- stream . readableDidRead ||
118- stream . readableAborted ||
119- stream [ kIsDisturbed ]
120- ) ) ;
121- }
122-
123114function isReadable ( stream ) {
124115 if ( stream && stream [ kIsReadable ] != null ) return stream [ kIsReadable ] ;
125116 const r = isReadableNodeStream ( stream ) ;
Original file line number Diff line number Diff line change @@ -1283,7 +1283,7 @@ Interface.prototype._ttyWrite = function(s, key) {
12831283/**
12841284 * Creates an `AsyncIterator` object that iterates through
12851285 * each line in the input stream as a string.
1286- * @returns {Symbol .AsyncIterator }
1286+ * @returns {symbol .AsyncIterator }
12871287 */
12881288Interface . prototype [ SymbolAsyncIterator ] = function ( ) {
12891289 if ( this [ kLineObjectStream ] === undefined ) {
You can’t perform that action at this time.
0 commit comments