Package Exports
- flow-floor
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (flow-floor) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
flow-floor
Transform stream factory to floor streamed numeric data values.
Installation
$ npm install flow-floorAPI
To create a stream factory,
var floorStream = require( 'flow-floor' );
// Create a new factory:
var fStream = floorStream();fStream.stream()
To create a new stream to floor streamed numeric values,
var stream = fStream.stream();Usage
Methods are chainable.
floorStream()
.stream()
.pipe( /* writable stream */ );Examples
var eventStream = require( 'event-stream' ),
fStream = require( 'flow-floor' );
// Create some data...
var data = new Array( 1000 );
for ( var i = 0; i < data.length; i++ ) {
data[ i ] = Math.random()-0.5;
}
// Create a readable stream:
var readStream = eventStream.readArray( data );
// Create a new stream:
var stream = fStream().stream();
// Pipe the data:
readStream.pipe( stream )
.pipe( eventStream.map( function( d, clbk ) {
clbk( null, d.toString()+'\n' );
}))
.pipe( process.stdout );To run the example code from the top-level application directory,
$ node ./examples/index.jsTests
Unit tests use the Mocha test framework with Chai assertions.
Assuming you have installed Mocha, execute the following command in the top-level application directory to run the tests:
$ mochaAll new feature development should have corresponding unit tests to validate correct functionality.
License
Copyright
Copyright © 2014. Athan Reines.