File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -312,9 +312,13 @@ The `rl.write()` method will write the data to the `readline` `Interface`'s
312312### rl\[ Symbol.asyncIterator\] ()
313313<!-- YAML
314314added: v11.4.0
315+ changes:
316+ - version: REPLACEME
317+ pr-url: https://github.com/nodejs/node/pull/26989
318+ description: Symbol.asyncIterator support is no longer experimental.
315319-->
316320
317- > Stability: 1 - Experimental
321+ > Stability: 2 - Stable
318322
319323* Returns: {AsyncIterator}
320324
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ const {
3333} = require ( 'internal/errors' ) . codes ;
3434const { inspect, inherits } = require ( 'util' ) ;
3535const { validateString } = require ( 'internal/validators' ) ;
36- const { emitExperimentalWarning } = require ( 'internal/util' ) ;
3736const { Buffer } = require ( 'buffer' ) ;
3837const EventEmitter = require ( 'events' ) ;
3938const {
@@ -1030,8 +1029,6 @@ Interface.prototype._ttyWrite = function(s, key) {
10301029} ;
10311030
10321031Interface . prototype [ Symbol . asyncIterator ] = function ( ) {
1033- emitExperimentalWarning ( 'readline Interface [Symbol.asyncIterator]' ) ;
1034-
10351032 if ( this [ kLineObjectStream ] === undefined ) {
10361033 if ( Readable === undefined ) {
10371034 Readable = require ( 'stream' ) . Readable ;
You can’t perform that action at this time.
0 commit comments