UNPKG

@beenotung/tslib

Version:
15 lines 402 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.clearAllTimer = void 0; /* tslint:disable no-empty */ function noop() { } /* tslint:enable no-empty */ function clearAllTimer() { let i = setInterval(noop); for (; i > 0; i--) { clearTimeout(i); clearInterval(i); } } exports.clearAllTimer = clearAllTimer; //# sourceMappingURL=timer.js.map