autotag/node_modules/is-stream
Corey Butler cda6f3fa13 WIP
2019-09-02 17:06:23 -05:00
..
index.js WIP 2019-09-02 17:06:23 -05:00
license WIP 2019-09-02 17:06:23 -05:00
package.json WIP 2019-09-02 17:06:23 -05:00
readme.md WIP 2019-09-02 17:06:23 -05:00

is-stream Build Status

Check if something is a Node.js stream

Install

$ npm install --save is-stream

Usage

const fs = require('fs');
const isStream = require('is-stream');

isStream(fs.createReadStream('unicorn.png'));
//=> true

isStream({});
//=> false

API

isStream(stream)

isStream.writable(stream)

isStream.readable(stream)

isStream.duplex(stream)

isStream.transform(stream)

License

MIT © Sindre Sorhus