|
преди 2 години | |
---|---|---|
.. | ||
index.d.ts | преди 2 години | |
index.js | преди 2 години | |
license | преди 2 години | |
package.json | преди 2 години | |
readme.md | преди 2 години |
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.