Eric Foster 35b96bc934 initial commit | hace 6 años | |
---|---|---|
.. | ||
index.js | hace 6 años | |
license | hace 6 años | |
package.json | hace 6 años | |
readme.md | hace 6 años |
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