This repository has been archived on 2024-09-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
front/node_modules/@emotion/memoize/dist/emotion-memoize.cjs.prod.js
2024-09-18 13:34:19 -03:00

14 lines
280 B
JavaScript

'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
function memoize(fn) {
var cache = Object.create(null);
return function (arg) {
if (cache[arg] === undefined) cache[arg] = fn(arg);
return cache[arg];
};
}
exports["default"] = memoize;