npm.io
0.1.4 • Published 8 years ago

is-stream-ended

Licence
MIT
Version
0.1.4
Deps
0
Size
3 kB
Vulns
0
Weekly
0
Stars
3

is-stream-ended

Check if a stream has ended.

$ npm install --save is-stream-ended
var isStreamEnded = require('is-stream-ended');

isStreamEnded(stream); // false
stream.end();
isStreamEnded(stream); // true

isStreamEnded(stream)

stream

  • Type: Stream, Object

Providing a stream will check against the stream._readableState object. To check from the _writableState, provide that object directly.

Keywords