0.0.2 • Published 10 years ago

subtract-stream v0.0.2

Weekly downloads
9
License
-
Repository
-
Last release
10 years ago

Build Status

subtract-stream

subtract the values of the last object from the values of the current object and stream the diffs

var sub = require('subtract-stream');
var s = sub();

s.on('data',function(d){
  console.log('data',d);
});

s.write({v:0});
s.write({v:2});
s.write({v:4});
s.write({v:6});
s.write({v:8});

output

data { v: 2 }
data { v: 2 }
data { v: 2 }
data { v: 2 }

you can also just emit numbers and it will subtract them

0.0.2

10 years ago

0.0.1

10 years ago