robert2206 8ad867f7a5 commit inicial | vor 8 Jahren | |
---|---|---|
.. | ||
index.js | vor 8 Jahren | |
license | vor 8 Jahren | |
package.json | vor 8 Jahren | |
readme.md | vor 8 Jahren |
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