UNPKG

@benev/slate

Version:
13 lines 265 B
export class Locker { #locked = false; lock(fn) { this.#locked = true; const result = fn(); this.#locked = false; return result; } get locked() { return this.#locked; } } //# sourceMappingURL=locker.js.map