Bakhtina Sofya b84cb877be 1st comm | преди 2 седмици | |
---|---|---|
.. | ||
index.js | преди 2 седмици | |
license | преди 2 седмици | |
package.json | преди 2 седмици | |
readme.md | преди 2 седмици |
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