Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 984f7ef

Browse filesBrowse files
committed
readline: add support for Symbol.dispose
PR-URL: #57276 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com>
1 parent b10ac9a commit 984f7ef
Copy full SHA for 984f7ef

File tree

Expand file treeCollapse file tree

2 files changed

+9
-0
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

2 files changed

+9
-0
lines changed
Open diff view settings
Collapse file

‎doc/api/readline.md‎

Copy file name to clipboardExpand all lines: doc/api/readline.md
+8Lines changed: 8 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,14 @@ the `'close'` event will be emitted.
272272
Calling `rl.close()` does not immediately stop other events (including `'line'`)
273273
from being emitted by the `InterfaceConstructor` instance.
274274

275+
### `rl[Symbol.dispose]()`
276+
277+
<!-- YAML
278+
added: REPLACEME
279+
-->
280+
281+
Alias for `rl.close()`.
282+
275283
### `rl.pause()`
276284

277285
<!-- YAML
Collapse file

‎lib/internal/readline/interface.js‎

Copy file name to clipboardExpand all lines: lib/internal/readline/interface.js
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1371,6 +1371,7 @@ class Interface extends InterfaceConstructor {
13711371
return this[kLineObjectStream];
13721372
}
13731373
}
1374+
Interface.prototype[SymbolDispose] = Interface.prototype.close;
13741375

13751376
module.exports = {
13761377
Interface,

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.