UNPKG

simple2k13

Version:
16 lines 334 B
class Once { func; result; constructor(func) { this.func = func; this.result; } run(...args) { if (this.result !== undefined) return this.result; this.result = this.func(...args); return this.result; } } export default Once; //# sourceMappingURL=index.js.map