Last change
on this file since bdd6491 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
588 bytes
|
Line | |
---|
1 | var stream = require('stream')
|
---|
2 |
|
---|
3 |
|
---|
4 | function isStream (obj) {
|
---|
5 | return obj instanceof stream.Stream
|
---|
6 | }
|
---|
7 |
|
---|
8 |
|
---|
9 | function isReadable (obj) {
|
---|
10 | return isStream(obj) && typeof obj._read == 'function' && typeof obj._readableState == 'object'
|
---|
11 | }
|
---|
12 |
|
---|
13 |
|
---|
14 | function isWritable (obj) {
|
---|
15 | return isStream(obj) && typeof obj._write == 'function' && typeof obj._writableState == 'object'
|
---|
16 | }
|
---|
17 |
|
---|
18 |
|
---|
19 | function isDuplex (obj) {
|
---|
20 | return isReadable(obj) && isWritable(obj)
|
---|
21 | }
|
---|
22 |
|
---|
23 |
|
---|
24 | module.exports = isStream
|
---|
25 | module.exports.isReadable = isReadable
|
---|
26 | module.exports.isWritable = isWritable
|
---|
27 | module.exports.isDuplex = isDuplex
|
---|
Note:
See
TracBrowser
for help on using the repository browser.