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 @@ -1157,6 +1157,7 @@ const Writable = require('stream').Writable;
1157
1157
class MyWritable extends Writable {
1158
1158
constructor (options ) {
1159
1159
super (options);
1160
+ // ...
1160
1161
}
1161
1162
}
1162
1163
```
@@ -1288,6 +1289,7 @@ class MyWritable extends Writable {
1288
1289
constructor (options ) {
1289
1290
// Calls the stream.Writable() constructor
1290
1291
super (options);
1292
+ // ...
1291
1293
}
1292
1294
}
1293
1295
```
@@ -1433,6 +1435,7 @@ const Writable = require('stream').Writable;
1433
1435
class MyWritable extends Writable {
1434
1436
constructor (options ) {
1435
1437
super (options);
1438
+ // ...
1436
1439
}
1437
1440
1438
1441
_write (chunk , encoding , callback ) {
@@ -1477,6 +1480,7 @@ class MyReadable extends Readable {
1477
1480
constructor (options ) {
1478
1481
// Calls the stream.Readable(options) constructor
1479
1482
super (options);
1483
+ // ...
1480
1484
}
1481
1485
}
1482
1486
```
@@ -1690,6 +1694,7 @@ const Duplex = require('stream').Duplex;
1690
1694
class MyDuplex extends Duplex {
1691
1695
constructor (options ) {
1692
1696
super (options);
1697
+ // ...
1693
1698
}
1694
1699
}
1695
1700
```
@@ -1845,6 +1850,7 @@ const Transform = require('stream').Transform;
1845
1850
class MyTransform extends Transform {
1846
1851
constructor (options ) {
1847
1852
super (options);
1853
+ // ...
1848
1854
}
1849
1855
}
1850
1856
```
You can’t perform that action at this time.
0 commit comments