Illia Kozyr c722a49f64 React Project DONE | пре 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