flush-write-stream
A write stream constructor that supports a flush function that is called before finish
is emitted
npm install flush-write-stream
Usage
var writer =var ws =wswswsws{// i am your normal ._write methodconsole}{// i am called before finish is emitted// wait 1 sec}
If you run the above it will produce the following output
writing hello
writing world
(nothing happens for 1 sec)
finished
API
var ws = writer([options], write, [flush])
Create a new writable stream. Options are forwarded to the stream constructor.
var ws = writer.obj([options], write, [flush])
Same as the above except objectMode
is set to true
per default.
License
MIT