2020-06-15
描述
检查给定的参数是否为双工流(可读和可写)。
提示
- 首先检查参数是否不等于
null
- 其次使用
typeof
检查参数是否为object
类型,其pipe
属性是否为function
类型 - 最后还需要使用
typeof
检查_read
,_write
和_readableState
,_writableState
属性是否分别为function
和object
代码
const isDuplexStream = val =>
val !== null &&
typeof val === 'object' &&
typeof val.pipe === 'function' &&
typeof val._read === 'function' &&
typeof val._readableState === 'object' &&
typeof val._write === 'function' &&
typeof val._writableState === 'object';
示例
检测 new Stream.Duplex()
是否为双工流:
const Stream = require('stream');
isDuplexStream(new Stream.Duplex()); // true
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于