memo.mjs 237 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 /*#__NO_SIDE_EFFECTS__*/ function memo(callback) { let result; return () => { if (result === undefined) result = callback(); return result; }; } export { memo }; //# sourceMappingURL=memo.mjs.map