hz-zhhq-web/node_modules/is-stream
zzyuan 03ac614884 前端提交3 2025-02-25 13:45:28 +08:00
..
index.js 前端提交3 2025-02-25 13:45:28 +08:00
license 前端提交3 2025-02-25 13:45:28 +08:00
package.json 前端提交3 2025-02-25 13:45:28 +08:00
readme.md 前端提交3 2025-02-25 13:45:28 +08:00

readme.md

is-stream Build Status

Check if something is a Node.js stream

Install

$ npm install --save is-stream

Usage

const fs = require('fs');
const isStream = require('is-stream');

isStream(fs.createReadStream('unicorn.png'));
//=> true

isStream({});
//=> false

API

isStream(stream)

isStream.writable(stream)

isStream.readable(stream)

isStream.duplex(stream)

isStream.transform(stream)

License

MIT © Sindre Sorhus