File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1128,6 +1128,7 @@ const Writable = require('stream').Writable;
1128
1128
class MyWritable extends Writable {
1129
1129
constructor (options ) {
1130
1130
super (options);
1131
+ // ...
1131
1132
}
1132
1133
}
1133
1134
```
@@ -1257,6 +1258,7 @@ class MyWritable extends Writable {
1257
1258
constructor (options ) {
1258
1259
// Calls the stream.Writable() constructor
1259
1260
super (options);
1261
+ // ...
1260
1262
}
1261
1263
}
1262
1264
```
@@ -1393,6 +1395,7 @@ const Writable = require('stream').Writable;
1393
1395
class MyWritable extends Writable {
1394
1396
constructor (options ) {
1395
1397
super (options);
1398
+ // ...
1396
1399
}
1397
1400
1398
1401
_write (chunk , encoding , callback ) {
@@ -1435,6 +1438,7 @@ class MyReadable extends Readable {
1435
1438
constructor (options ) {
1436
1439
// Calls the stream.Readable(options) constructor
1437
1440
super (options);
1441
+ // ...
1438
1442
}
1439
1443
}
1440
1444
```
@@ -1648,6 +1652,7 @@ const Duplex = require('stream').Duplex;
1648
1652
class MyDuplex extends Duplex {
1649
1653
constructor (options ) {
1650
1654
super (options);
1655
+ // ...
1651
1656
}
1652
1657
}
1653
1658
```
@@ -1803,6 +1808,7 @@ const Transform = require('stream').Transform;
1803
1808
class MyTransform extends Transform {
1804
1809
constructor (options ) {
1805
1810
super (options);
1811
+ // ...
1806
1812
}
1807
1813
}
1808
1814
```
You can’t perform that action at this time.
0 commit comments