File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1117,6 +1117,7 @@ const Writable = require('stream').Writable;
1117
1117
class MyWritable extends Writable {
1118
1118
constructor (options ) {
1119
1119
super (options);
1120
+ // ...
1120
1121
}
1121
1122
}
1122
1123
```
@@ -1243,6 +1244,7 @@ class MyWritable extends Writable {
1243
1244
constructor (options ) {
1244
1245
// Calls the stream.Writable() constructor
1245
1246
super (options);
1247
+ // ...
1246
1248
}
1247
1249
}
1248
1250
```
@@ -1378,6 +1380,7 @@ const Writable = require('stream').Writable;
1378
1380
class MyWritable extends Writable {
1379
1381
constructor (options ) {
1380
1382
super (options);
1383
+ // ...
1381
1384
}
1382
1385
1383
1386
_write (chunk , encoding , callback ) {
@@ -1420,6 +1423,7 @@ class MyReadable extends Readable {
1420
1423
constructor (options ) {
1421
1424
// Calls the stream.Readable(options) constructor
1422
1425
super (options);
1426
+ // ...
1423
1427
}
1424
1428
}
1425
1429
```
@@ -1633,6 +1637,7 @@ const Duplex = require('stream').Duplex;
1633
1637
class MyDuplex extends Duplex {
1634
1638
constructor (options ) {
1635
1639
super (options);
1640
+ // ...
1636
1641
}
1637
1642
}
1638
1643
```
@@ -1788,6 +1793,7 @@ const Transform = require('stream').Transform;
1788
1793
class MyTransform extends Transform {
1789
1794
constructor (options ) {
1790
1795
super (options);
1796
+ // ...
1791
1797
}
1792
1798
}
1793
1799
```
You can’t perform that action at this time.
0 commit comments