설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dienianindya d731c0e823 1001 update 1 년 전
..
index.d.ts 1001 update 1 년 전
index.js 1001 update 1 년 전
license 1001 update 1 년 전
package.json 1001 update 1 년 전
readme.md 1001 update 1 년 전

readme.md

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.