Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions doc/api/stream.md
Original file line numberDiff line numberDiff line change
Expand Up@@ -1128,6 +1128,7 @@ const Writable = require('stream').Writable;
class MyWritable extends Writable{
constructor(options){
super(options);
// ...
}
}
```
Expand DownExpand Up@@ -1257,6 +1258,7 @@ class MyWritable extends Writable{
constructor(options){
// Calls the stream.Writable() constructor
super(options);
// ...
}
}
```
Expand DownExpand Up@@ -1393,6 +1395,7 @@ const Writable = require('stream').Writable;
class MyWritable extends Writable{
constructor(options){
super(options);
// ...
}

_write(chunk, encoding, callback){
Expand DownExpand Up@@ -1435,6 +1438,7 @@ class MyReadable extends Readable{
constructor(options){
// Calls the stream.Readable(options) constructor
super(options);
// ...
}
}
```
Expand DownExpand Up@@ -1648,6 +1652,7 @@ const Duplex = require('stream').Duplex;
class MyDuplex extends Duplex{
constructor(options){
super(options);
// ...
}
}
```
Expand DownExpand Up@@ -1803,6 +1808,7 @@ const Transform = require('stream').Transform;
class MyTransform extends Transform{
constructor(options){
super(options);
// ...
}
}
```
Expand Down