flow-subtract
Transform stream factory to decrement streamed numeric data values.
Installation
$ npm install flow-subtract
API
To create a stream factory,
var subStream = ;// Create a new factory:var sStream = ;
sStream.subtract( [value] )
This method is a setter/getter. If no value
is provided, returns the value
subtracted from streamed values (a.k.a., the subtrahend
); default is 0
. To set the value
,
sStream;
sStream.stream()
To create a new subtraction stream,
var stream = sStream;
Usage
Methods are chainable.
;
Examples
var eventStream =sStream = ;// Create some data...var data = 1000 ;for var i = 0; i < datalength; i++data i = Math;// Create a readable stream:var readStream = eventStream;// Create a new subtraction stream:var stream =;// Pipe the data:readStream;
To run the example code from the top-level application directory,
$ node ./examples/index.js
Tests
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:
$ mocha
All new feature development should have corresponding unit tests to validate correct functionality.
License
Copyright
Copyright © 2014. Athan Reines.