mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00
readline: use internal addAbortListener
PR-URL: https://github.com/nodejs/node/pull/52081 Refs: https://github.com/nodejs/node/pull/48596 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
parent
d89fc73d45
commit
ff93f3e1a8
3 changed files with 5 additions and 4 deletions
|
@ -53,6 +53,7 @@ const {
|
|||
stripVTControlCharacters,
|
||||
} = require('internal/util/inspect');
|
||||
const EventEmitter = require('events');
|
||||
const { addAbortListener } = require('internal/events/abort_listener');
|
||||
const {
|
||||
charLengthAt,
|
||||
charLengthLeft,
|
||||
|
@ -326,7 +327,7 @@ function InterfaceConstructor(input, output, completer, terminal) {
|
|||
if (signal.aborted) {
|
||||
process.nextTick(onAborted);
|
||||
} else {
|
||||
const disposable = EventEmitter.addAbortListener(signal, onAborted);
|
||||
const disposable = addAbortListener(signal, onAborted);
|
||||
self.once('close', disposable[SymbolDispose]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue