root 3bf41bf355 update | 1 yıl önce | |
---|---|---|
.. | ||
index.js | 1 yıl önce | |
license | 1 yıl önce | |
package.json | 1 yıl önce | |
readme.md | 1 yıl önce |
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