Streams

Streams.

Usage

var streams = require( '@stdlib/streams' );

streams

Namespace containing stream functionality.

var s = streams;
// returns {...}

The namespace contains the following sub-namespaces:

  • node: node.js streams.

Examples

var getKeys = require( '@stdlib/utils/keys' );
var streams = require( '@stdlib/streams' );

console.log( getKeys( streams ) );
Did you find this page helpful?