mirror of
https://github.com/oven-sh/bun
synced 2026-02-16 13:51:47 +00:00
Co-authored-by: Kai Tamkun <kai@tamkun.io> Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> Co-authored-by: Ashcon Partovi <ashcon@partovi.net> Co-authored-by: Ciro Spaciari <ciro.spaciari@gmail.com> Co-authored-by: Dylan Conway <35280289+dylan-conway@users.noreply.github.com> Co-authored-by: 190n <190n@users.noreply.github.com>
29 lines
590 B
JavaScript
29 lines
590 B
JavaScript
'use strict';
|
|
|
|
const assert = require('assert');
|
|
const kLimit = Symbol('limit');
|
|
const kCallback = Symbol('callback');
|
|
const common = require('./');
|
|
|
|
class Countdown {
|
|
constructor(limit, cb) {
|
|
assert.strictEqual(typeof limit, 'number');
|
|
assert.strictEqual(typeof cb, 'function');
|
|
this[kLimit] = limit;
|
|
this[kCallback] = common.mustCall(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;
|