File tree 1 file changed +20
-2
lines changed
1 file changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -463,6 +463,15 @@ process.nextTick(() => {
463
463
464
464
See also: [ ` writable.cork() ` ] [ ] .
465
465
466
+ ##### writable.writable
467
+ <!-- YAML
468
+ added: REPLACEME
469
+ -->
470
+
471
+ * {boolean}
472
+
473
+ Is ` true ` if it is safe to call [ ` writable.write() ` ] [ ] .
474
+
466
475
##### writable.writableHighWaterMark
467
476
<!-- YAML
468
477
added: v9.3.0
@@ -1013,12 +1022,21 @@ also be emitted.
1013
1022
Calling [ ` stream.read([size]) ` ] [ stream-read ] after the [ ` 'end' ` ] [ ] event has
1014
1023
been emitted will return ` null ` . No runtime error will be raised.
1015
1024
1025
+ ##### readable.readable
1026
+ <!-- YAML
1027
+ added: REPLACEME
1028
+ -->
1029
+
1030
+ * {boolean}
1031
+
1032
+ Is ` true ` if it is safe to call [ ` readable.read() ` ] [ ] .
1033
+
1016
1034
##### readable.readableHighWaterMark
1017
1035
<!-- YAML
1018
1036
added: v9.3.0
1019
1037
-->
1020
1038
1021
- * Returns: {number}
1039
+ * {number}
1022
1040
1023
1041
Returns the value of ` highWaterMark ` passed when constructing this
1024
1042
` Readable ` .
@@ -1028,7 +1046,7 @@ Returns the value of `highWaterMark` passed when constructing this
1028
1046
added: v9.4.0
1029
1047
-->
1030
1048
1031
- * Returns: {number}
1049
+ * {number}
1032
1050
1033
1051
This property contains the number of bytes (or objects) in the queue
1034
1052
ready to be read. The value provides introspection data regarding
You can’t perform that action at this time.
0 commit comments