mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
556 B
28 lines
556 B
8 years ago
|
/* eslint-disable required-modules */
|
||
|
'use strict';
|
||
|
|
||
|
const assert = require('assert');
|
||
|
const kLimit = Symbol('limit');
|
||
|
const kCallback = Symbol('callback');
|
||
|
|
||
|
class Countdown {
|
||
|
constructor(limit, cb) {
|
||
|
assert.strictEqual(typeof limit, 'number');
|
||
|
assert.strictEqual(typeof cb, 'function');
|
||
|
this[kLimit] = limit;
|
||
|
this[kCallback] = cb;
|
||
|
}
|
||
|
|
||
|
dec() {
|
||
|
assert(this[kLimit] > 0, 'Countdown expired');
|
||
|
if (--this[kLimit] === 0)
|
||
|
this[kCallback]();
|
||
|
}
|
||
|
|
||
|
get remaining() {
|
||
|
return this[kLimit];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = Countdown;
|