liberation:reactive-var-inc-and-dec

v1.0.0Published 10 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

meteor-reactivevar-increment-and-decrement

Adds methods "inc" and "dec" to ReactiveVar.

1var v = new ReactiveVar(1);
2v.inc();  // => 2
3v.inc(3); // => 5
4v.dec(4); // => 1
5v.dec();  // => 0