__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# flush-write-stream
A write stream constructor that supports a flush function that is called before `finish` is emitted
```
npm install flush-write-stream
```
[](http://travis-ci.org/mafintosh/flush-write-stream)
## Usage
``` js
var writer = require('flush-write-stream')
var ws = writer(write, flush)
ws.on('finish', function () {
console.log('finished')
})
ws.write('hello')
ws.write('world')
ws.end()
function write (data, enc, cb) {
// i am your normal ._write method
console.log('writing', data.toString())
cb()
}
function flush (cb) {
// i am called before finish is emitted
setTimeout(cb, 1000) // 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
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| node_modules | Folder | 0755 |
|
|
| .travis.yml | File | 69 B | 0644 |
|
| LICENSE | File | 1.05 KB | 0644 |
|
| README.md | File | 1.12 KB | 0644 |
|
| example.js | File | 390 B | 0644 |
|
| index.js | File | 1.5 KB | 0644 |
|
| package.json | File | 1.69 KB | 0644 |
|
| test.js | File | 1.56 KB | 0644 |
|