Lines Matching refs:isStream
1 # isStream chapter
9 The missing `Stream.isStream(obj)`: determine if an object is standard Node.js `Stream`. Works for …
14 var isStream = require('isstream')
17 isStream(new Stream()) // true
19 isStream({}) // false
21 isStream(new Stream.Readable()) // true
22 isStream(new Stream.Writable()) // true
23 isStream(new Stream.Duplex()) // true
24 isStream(new Stream.Transform()) // true
25 isStream(new Stream.PassThrough()) // true
66 **isStream** is Copyright (c) 2015 Rod Vagg [@rvagg](https://twitter.com/rvagg) and licenced under …