hit-counter.js 185 B

1234567891011121314
  1. class HitCounter {
  2. constructor(count,cb) {
  3. this.count=count;
  4. this.cb = cb;
  5. }
  6. hit() {
  7. this.count--;
  8. if(this.count == 0) {
  9. this.cb();
  10. }
  11. }
  12. }
  13. module.exports = HitCounter;