diff options
Diffstat (limited to 'node_modules/through2/README.md')
-rw-r--r-- | node_modules/through2/README.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/node_modules/through2/README.md b/node_modules/through2/README.md index c84b3464a..a916f15ef 100644 --- a/node_modules/through2/README.md +++ b/node_modules/through2/README.md @@ -20,6 +20,9 @@ fs.createReadStream('ex.txt') callback() })) .pipe(fs.createWriteStream('out.txt')) + .on('finish', function () { + doSomethingSpecial() + }) ``` Or object streams: |