@@ -877,10 +877,12 @@ the stream has not been destroyed, errored, or ended.
877
877
added:
878
878
- v18.0.0
879
879
- v16.17.0
880
+ changes:
881
+ - version: REPLACEME
882
+ pr-url: https://github.com/nodejs/node/pull/57513
883
+ description: Marking the API stable.
880
884
-->
881
885
882
- > Stability: 1 - Experimental
883
-
884
886
* {boolean}
885
887
886
888
Returns whether the stream was destroyed or errored before emitting ` 'finish' ` .
@@ -1641,10 +1643,12 @@ the stream has not been destroyed or emitted `'error'` or `'end'`.
1641
1643
1642
1644
<!-- YAML
1643
1645
added: v16.8.0
1646
+ changes:
1647
+ - version: REPLACEME
1648
+ pr-url: https://github.com/nodejs/node/pull/57513
1649
+ description: Marking the API stable.
1644
1650
-->
1645
1651
1646
- > Stability: 1 - Experimental
1647
-
1648
1652
* {boolean}
1649
1653
1650
1654
Returns whether the stream was destroyed or errored before emitting ` 'end' ` .
@@ -1655,10 +1659,12 @@ Returns whether the stream was destroyed or errored before emitting `'end'`.
1655
1659
added:
1656
1660
- v16.7.0
1657
1661
- v14.18.0
1662
+ changes:
1663
+ - version: REPLACEME
1664
+ pr-url: https://github.com/nodejs/node/pull/57513
1665
+ description: Marking the API stable.
1658
1666
-->
1659
1667
1660
- > Stability: 1 - Experimental
1661
-
1662
1668
* {boolean}
1663
1669
1664
1670
Returns whether ` 'data' ` has been emitted.
@@ -2003,10 +2009,12 @@ a promise that fulfills when the stream is finished.
2003
2009
added:
2004
2010
- v19.1.0
2005
2011
- v18.13.0
2012
+ changes:
2013
+ - version: REPLACEME
2014
+ pr-url: https://github.com/nodejs/node/pull/57513
2015
+ description: Marking the API stable.
2006
2016
-->
2007
2017
2008
- > Stability: 1 - Experimental
2009
-
2010
2018
* ` stream ` {Stream|Iterable|AsyncIterable|Function}
2011
2019
* ` options ` {Object}
2012
2020
* ` signal ` {AbortSignal} allows destroying the stream if the signal is
@@ -2038,10 +2046,12 @@ See [`stream.compose`][] for more information.
2038
2046
2039
2047
<!-- YAML
2040
2048
added: v16.3.0
2049
+ changes:
2050
+ - version: REPLACEME
2051
+ pr-url: https://github.com/nodejs/node/pull/57513
2052
+ description: Marking the API stable.
2041
2053
-->
2042
2054
2043
- > Stability: 1 - Experimental
2044
-
2045
2055
* ` options ` {Object}
2046
2056
* ` destroyOnReturn ` {boolean} When set to ` false ` , calling ` return ` on the
2047
2057
async iterator, or exiting a ` for await...of ` iteration using a ` break ` ,
@@ -3079,10 +3089,12 @@ Readable.from([
3079
3089
3080
3090
<!-- YAML
3081
3091
added: v17.0.0
3092
+ changes:
3093
+ - version: REPLACEME
3094
+ pr-url: https://github.com/nodejs/node/pull/57513
3095
+ description: Marking the API stable.
3082
3096
-->
3083
3097
3084
- > Stability: 1 - Experimental
3085
-
3086
3098
* ` readableStream ` {ReadableStream}
3087
3099
* ` options ` {Object}
3088
3100
* ` encoding ` {string}
@@ -3095,10 +3107,12 @@ added: v17.0.0
3095
3107
3096
3108
<!-- YAML
3097
3109
added: v16.8.0
3110
+ changes:
3111
+ - version: REPLACEME
3112
+ pr-url: https://github.com/nodejs/node/pull/57513
3113
+ description: Marking the API stable.
3098
3114
-->
3099
3115
3100
- > Stability: 1 - Experimental
3101
-
3102
3116
* ` stream ` {stream.Readable|ReadableStream}
3103
3117
* Returns: ` boolean `
3104
3118
@@ -3110,10 +3124,12 @@ Returns whether the stream has been read from or cancelled.
3110
3124
added:
3111
3125
- v17.3.0
3112
3126
- v16.14.0
3127
+ changes:
3128
+ - version: REPLACEME
3129
+ pr-url: https://github.com/nodejs/node/pull/57513
3130
+ description: Marking the API stable.
3113
3131
-->
3114
3132
3115
- > Stability: 1 - Experimental
3116
-
3117
3133
* ` stream ` {Readable|Writable|Duplex|WritableStream|ReadableStream}
3118
3134
* Returns: {boolean}
3119
3135
@@ -3125,10 +3141,12 @@ Returns whether the stream has encountered an error.
3125
3141
added:
3126
3142
- v17.4.0
3127
3143
- v16.14.0
3144
+ changes:
3145
+ - version: REPLACEME
3146
+ pr-url: https://github.com/nodejs/node/pull/57513
3147
+ description: Marking the API stable.
3128
3148
-->
3129
3149
3130
- > Stability: 1 - Experimental
3131
-
3132
3150
* ` stream ` {Readable|Duplex|ReadableStream}
3133
3151
* Returns: {boolean}
3134
3152
@@ -3139,14 +3157,15 @@ Returns whether the stream is readable.
3139
3157
<!-- YAML
3140
3158
added: v17.0.0
3141
3159
changes:
3160
+ - version: REPLACEME
3161
+ pr-url: https://github.com/nodejs/node/pull/57513
3162
+ description: Marking the API stable.
3142
3163
- version:
3143
3164
- v18.7.0
3144
3165
pr-url: https://github.com/nodejs/node/pull/43515
3145
3166
description: include strategy options on Readable.
3146
3167
-->
3147
3168
3148
- > Stability: 1 - Experimental
3149
-
3150
3169
* ` streamReadable ` {stream.Readable}
3151
3170
* ` options ` {Object}
3152
3171
* ` strategy ` {Object}
@@ -3164,10 +3183,12 @@ changes:
3164
3183
3165
3184
<!-- YAML
3166
3185
added: v17.0.0
3186
+ changes:
3187
+ - version: REPLACEME
3188
+ pr-url: https://github.com/nodejs/node/pull/57513
3189
+ description: Marking the API stable.
3167
3190
-->
3168
3191
3169
- > Stability: 1 - Experimental
3170
-
3171
3192
* ` writableStream ` {WritableStream}
3172
3193
* ` options ` {Object}
3173
3194
* ` decodeStrings ` {boolean}
@@ -3180,10 +3201,12 @@ added: v17.0.0
3180
3201
3181
3202
<!-- YAML
3182
3203
added: v17.0.0
3204
+ changes:
3205
+ - version: REPLACEME
3206
+ pr-url: https://github.com/nodejs/node/pull/57513
3207
+ description: Marking the API stable.
3183
3208
-->
3184
3209
3185
- > Stability: 1 - Experimental
3186
-
3187
3210
* ` streamWritable ` {stream.Writable}
3188
3211
* Returns: {WritableStream}
3189
3212
@@ -3242,10 +3265,12 @@ Duplex.from([
3242
3265
3243
3266
<!-- YAML
3244
3267
added: v17.0.0
3268
+ changes:
3269
+ - version: REPLACEME
3270
+ pr-url: https://github.com/nodejs/node/pull/57513
3271
+ description: Marking the API stable.
3245
3272
-->
3246
3273
3247
- > Stability: 1 - Experimental
3248
-
3249
3274
* ` pair ` {Object}
3250
3275
* ` readable ` {ReadableStream}
3251
3276
* ` writable ` {WritableStream}
@@ -3323,10 +3348,12 @@ duplex.once('readable', () => console.log('readable', duplex.read()));
3323
3348
3324
3349
<!-- YAML
3325
3350
added: v17.0.0
3351
+ changes:
3352
+ - version: REPLACEME
3353
+ pr-url: https://github.com/nodejs/node/pull/57513
3354
+ description: Marking the API stable.
3326
3355
-->
3327
3356
3328
- > Stability: 1 - Experimental
3329
-
3330
3357
* ` streamDuplex ` {stream.Duplex}
3331
3358
* Returns: {Object}
3332
3359
* ` readable ` {ReadableStream}
0 commit comments