Eric Foster 35b96bc934 initial commit | před 6 roky | |
---|---|---|
.. | ||
index.js | před 6 roky | |
license | před 6 roky | |
package.json | před 6 roky | |
readme.md | před 6 roky |
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