mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
f6926d5d00
PR-URL: https://github.com/nodejs/node/pull/17211 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Alexey Orlenko <eaglexrlnk@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
29 lines
581 B
JavaScript
29 lines
581 B
JavaScript
/* 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]();
|
|
return this[kLimit];
|
|
}
|
|
|
|
get remaining() {
|
|
return this[kLimit];
|
|
}
|
|
}
|
|
|
|
module.exports = Countdown;
|