dienianindya d731c0e823 1001 update | 1 year ago | |
---|---|---|
.. | ||
index.d.ts | 1 year ago | |
index.js | 1 year ago | |
license | 1 year ago | |
package.json | 1 year ago | |
readme.md | 1 year ago |
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
Stream
, Object
Providing a stream will check against the stream._readableState
object. To check from the _writableState
, provide that object directly.