foremark
Version:
A technology for writing semi-plain text documents that extends upon the concept of Markdeep.
34 lines • 1.41 kB
JavaScript
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
Object.defineProperty(exports, "__esModule", { value: true });
var bind_decorator_1 = require("bind-decorator");
var Debouncer = /** @class */ (function () {
function Debouncer() {
this.pending = null;
}
Debouncer.prototype.handleTimeout = function () {
var fn = this.pending.fn;
this.pending = null;
fn();
};
Debouncer.prototype.invoke = function (fn, delay) {
if (this.pending) {
window.clearTimeout(this.pending.timer);
}
this.pending = {
fn: fn,
timer: window.setTimeout(this.handleTimeout, delay),
};
};
__decorate([
bind_decorator_1.bind
], Debouncer.prototype, "handleTimeout", null);
return Debouncer;
}());
exports.Debouncer = Debouncer;
//# sourceMappingURL=debouncer.js.map
;