@@ -875,10 +875,12 @@ the stream has not been destroyed, errored, or ended.
875
875
added:
876
876
- v18.0.0
877
877
- v16.17.0
878
+ changes:
879
+ - version: REPLACEME
880
+ pr-url: https://github.com/nodejs/node/pull/57513
881
+ description: Marking the API stable.
878
882
-->
879
883
880
- > Stability: 1 - Experimental
881
-
882
884
* {boolean}
883
885
884
886
Returns whether the stream was destroyed or errored before emitting ` 'finish' ` .
@@ -1635,10 +1637,12 @@ the stream has not been destroyed or emitted `'error'` or `'end'`.
1635
1637
1636
1638
<!-- YAML
1637
1639
added: v16.8.0
1640
+ changes:
1641
+ - version: REPLACEME
1642
+ pr-url: https://github.com/nodejs/node/pull/57513
1643
+ description: Marking the API stable.
1638
1644
-->
1639
1645
1640
- > Stability: 1 - Experimental
1641
-
1642
1646
* {boolean}
1643
1647
1644
1648
Returns whether the stream was destroyed or errored before emitting ` 'end' ` .
@@ -1649,10 +1653,12 @@ Returns whether the stream was destroyed or errored before emitting `'end'`.
1649
1653
added:
1650
1654
- v16.7.0
1651
1655
- v14.18.0
1656
+ changes:
1657
+ - version: REPLACEME
1658
+ pr-url: https://github.com/nodejs/node/pull/57513
1659
+ description: Marking the API stable.
1652
1660
-->
1653
1661
1654
- > Stability: 1 - Experimental
1655
-
1656
1662
* {boolean}
1657
1663
1658
1664
Returns whether ` 'data' ` has been emitted.
@@ -1995,10 +2001,12 @@ a promise that fulfills when the stream is finished.
1995
2001
added:
1996
2002
- v19.1.0
1997
2003
- v18.13.0
2004
+ changes:
2005
+ - version: REPLACEME
2006
+ pr-url: https://github.com/nodejs/node/pull/57513
2007
+ description: Marking the API stable.
1998
2008
-->
1999
2009
2000
- > Stability: 1 - Experimental
2001
-
2002
2010
* ` stream ` {Stream|Iterable|AsyncIterable|Function}
2003
2011
* ` options ` {Object}
2004
2012
* ` signal ` {AbortSignal} allows destroying the stream if the signal is
@@ -2030,10 +2038,12 @@ See [`stream.compose`][] for more information.
2030
2038
2031
2039
<!-- YAML
2032
2040
added: v16.3.0
2041
+ changes:
2042
+ - version: REPLACEME
2043
+ pr-url: https://github.com/nodejs/node/pull/57513
2044
+ description: Marking the API stable.
2033
2045
-->
2034
2046
2035
- > Stability: 1 - Experimental
2036
-
2037
2047
* ` options ` {Object}
2038
2048
* ` destroyOnReturn ` {boolean} When set to ` false ` , calling ` return ` on the
2039
2049
async iterator, or exiting a ` for await...of ` iteration using a ` break ` ,
@@ -3069,10 +3079,12 @@ Readable.from([
3069
3079
3070
3080
<!-- YAML
3071
3081
added: v17.0.0
3082
+ changes:
3083
+ - version: REPLACEME
3084
+ pr-url: https://github.com/nodejs/node/pull/57513
3085
+ description: Marking the API stable.
3072
3086
-->
3073
3087
3074
- > Stability: 1 - Experimental
3075
-
3076
3088
* ` readableStream ` {ReadableStream}
3077
3089
* ` options ` {Object}
3078
3090
* ` encoding ` {string}
@@ -3085,10 +3097,12 @@ added: v17.0.0
3085
3097
3086
3098
<!-- YAML
3087
3099
added: v16.8.0
3100
+ changes:
3101
+ - version: REPLACEME
3102
+ pr-url: https://github.com/nodejs/node/pull/57513
3103
+ description: Marking the API stable.
3088
3104
-->
3089
3105
3090
- > Stability: 1 - Experimental
3091
-
3092
3106
* ` stream ` {stream.Readable|ReadableStream}
3093
3107
* Returns: ` boolean `
3094
3108
@@ -3100,10 +3114,12 @@ Returns whether the stream has been read from or cancelled.
3100
3114
added:
3101
3115
- v17.3.0
3102
3116
- v16.14.0
3117
+ changes:
3118
+ - version: REPLACEME
3119
+ pr-url: https://github.com/nodejs/node/pull/57513
3120
+ description: Marking the API stable.
3103
3121
-->
3104
3122
3105
- > Stability: 1 - Experimental
3106
-
3107
3123
* ` stream ` {Readable|Writable|Duplex|WritableStream|ReadableStream}
3108
3124
* Returns: {boolean}
3109
3125
@@ -3115,10 +3131,12 @@ Returns whether the stream has encountered an error.
3115
3131
added:
3116
3132
- v17.4.0
3117
3133
- v16.14.0
3134
+ changes:
3135
+ - version: REPLACEME
3136
+ pr-url: https://github.com/nodejs/node/pull/57513
3137
+ description: Marking the API stable.
3118
3138
-->
3119
3139
3120
- > Stability: 1 - Experimental
3121
-
3122
3140
* ` stream ` {Readable|Duplex|ReadableStream}
3123
3141
* Returns: {boolean}
3124
3142
@@ -3129,14 +3147,15 @@ Returns whether the stream is readable.
3129
3147
<!-- YAML
3130
3148
added: v17.0.0
3131
3149
changes:
3150
+ - version: REPLACEME
3151
+ pr-url: https://github.com/nodejs/node/pull/57513
3152
+ description: Marking the API stable.
3132
3153
- version:
3133
3154
- v18.7.0
3134
3155
pr-url: https://github.com/nodejs/node/pull/43515
3135
3156
description: include strategy options on Readable.
3136
3157
-->
3137
3158
3138
- > Stability: 1 - Experimental
3139
-
3140
3159
* ` streamReadable ` {stream.Readable}
3141
3160
* ` options ` {Object}
3142
3161
* ` strategy ` {Object}
@@ -3154,10 +3173,12 @@ changes:
3154
3173
3155
3174
<!-- YAML
3156
3175
added: v17.0.0
3176
+ changes:
3177
+ - version: REPLACEME
3178
+ pr-url: https://github.com/nodejs/node/pull/57513
3179
+ description: Marking the API stable.
3157
3180
-->
3158
3181
3159
- > Stability: 1 - Experimental
3160
-
3161
3182
* ` writableStream ` {WritableStream}
3162
3183
* ` options ` {Object}
3163
3184
* ` decodeStrings ` {boolean}
@@ -3170,10 +3191,12 @@ added: v17.0.0
3170
3191
3171
3192
<!-- YAML
3172
3193
added: v17.0.0
3194
+ changes:
3195
+ - version: REPLACEME
3196
+ pr-url: https://github.com/nodejs/node/pull/57513
3197
+ description: Marking the API stable.
3173
3198
-->
3174
3199
3175
- > Stability: 1 - Experimental
3176
-
3177
3200
* ` streamWritable ` {stream.Writable}
3178
3201
* Returns: {WritableStream}
3179
3202
@@ -3232,10 +3255,12 @@ Duplex.from([
3232
3255
3233
3256
<!-- YAML
3234
3257
added: v17.0.0
3258
+ changes:
3259
+ - version: REPLACEME
3260
+ pr-url: https://github.com/nodejs/node/pull/57513
3261
+ description: Marking the API stable.
3235
3262
-->
3236
3263
3237
- > Stability: 1 - Experimental
3238
-
3239
3264
* ` pair ` {Object}
3240
3265
* ` readable ` {ReadableStream}
3241
3266
* ` writable ` {WritableStream}
@@ -3313,10 +3338,12 @@ duplex.once('readable', () => console.log('readable', duplex.read()));
3313
3338
3314
3339
<!-- YAML
3315
3340
added: v17.0.0
3341
+ changes:
3342
+ - version: REPLACEME
3343
+ pr-url: https://github.com/nodejs/node/pull/57513
3344
+ description: Marking the API stable.
3316
3345
-->
3317
3346
3318
- > Stability: 1 - Experimental
3319
-
3320
3347
* ` streamDuplex ` {stream.Duplex}
3321
3348
* Returns: {Object}
3322
3349
* ` readable ` {ReadableStream}
0 commit comments