Skip to content

Commit 9767fc9

Browse files
committed
lib: fix linting warnings and errors
1 parent 99a90db commit 9767fc9

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

lib/internal/bootstrap/node.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const {
5656
} = primordials;
5757
const config = internalBinding('config');
5858
const internalTimers = require('internal/timers');
59-
const { deprecate, lazyDOMExceptionClass } = require('internal/util');
59+
const { deprecate } = require('internal/util');
6060

6161
setupProcessObject();
6262

lib/internal/streams/utils.js

-9
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ const {
66
SymbolIterator,
77
} = primordials;
88

9-
const kDestroyed = Symbol('kDestroyed');
109
const kIsErrored = Symbol('kIsErrored');
1110
const kIsReadable = Symbol('kIsReadable');
1211
const 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-
123114
function isReadable(stream) {
124115
if (stream && stream[kIsReadable] != null) return stream[kIsReadable];
125116
const r = isReadableNodeStream(stream);

lib/readline.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -1283,7 +1283,11 @@ 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+
* @typedef {{
1287+
* [Symbol.asyncIterator]: () => InterfaceAsyncIterator,
1288+
* next: () => Promise<string>
1289+
* }} InterfaceAsyncIterator
1290+
* @returns {InterfaceAsyncIterator}
12871291
*/
12881292
Interface.prototype[SymbolAsyncIterator] = function() {
12891293
if (this[kLineObjectStream] === undefined) {

0 commit comments

Comments
 (0)