1.2.2 • Published 9 years ago

node-aggregator v1.2.2

Weekly downloads
1
License
MIT
Repository
-
Last release
9 years ago

#Data aggregation tool

npm version

usefull to manage cache and keed updated

Example

Basic

var sum = new Aggregator(function(new_value, memo, callback){
  callback(new_value + memo); 
}, 0);

sum.add(1);
console.log(sum.value()); // => 1;
sum.add(2);
console.log(sum.value()); // => 3;
1.2.2

9 years ago

1.2.1

9 years ago

1.2.0

9 years ago

1.1.0

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago