27 lines
465 B
Plaintext
27 lines
465 B
Plaintext
|
|
||
|
{{alias}}( value )
|
||
|
Tests if a value is Node transform stream-like.
|
||
|
|
||
|
Parameters
|
||
|
----------
|
||
|
value: any
|
||
|
Value to test.
|
||
|
|
||
|
Returns
|
||
|
-------
|
||
|
bool: boolean
|
||
|
Boolean indicating whether value is Node transform stream-like.
|
||
|
|
||
|
Examples
|
||
|
--------
|
||
|
> var Stream = require( 'stream' ).Transform;
|
||
|
> s = new Stream();
|
||
|
> var bool = {{alias}}( s )
|
||
|
true
|
||
|
> bool = {{alias}}( {} )
|
||
|
false
|
||
|
|
||
|
See Also
|
||
|
--------
|
||
|
|