|
||||
---|---|---|---|---|
.. | ||||
index.js | 11e3a9652a | 7 年 前 | ||
license | 11e3a9652a | 7 年 前 | ||
package.json | 11e3a9652a | 7 年 前 | ||
readme.md | 11e3a9652a | 7 年 前 |
Check if something is a Node.js stream
$ npm install --save is-stream
const fs = require('fs');
const isStream = require('is-stream');
isStream(fs.createReadStream('unicorn.png'));
//=> true
isStream({});
//=> false
MIT © Sindre Sorhus