@miyauci/memo
Version:
Memoization tools, TC39 proposal-function-memo implementation
13 lines (12 loc) • 546 B
JavaScript
;
// Copyright © 2023 Tomoki Miyauchi. All rights reserved. MIT license.
// This module is browser compatible.
Object.defineProperty(exports, "__esModule", { value: true });
exports.memo = void 0;
/** This module is memoization tools, ponyfill for TC39 [proposal-function-memo](https://github.com/tc39/proposal-function-memo).
*
* You can find [polyfill](./polyfill.ts).
* @module
*/
var memo_js_1 = require("./memo.js");
Object.defineProperty(exports, "memo", { enumerable: true, get: function () { return memo_js_1.memo; } });