securityos/node_modules/framer-motion/dist/es/utils/memo.mjs

11 lines
178 B
JavaScript

function memo(callback) {
let result;
return () => {
if (result === undefined)
result = callback();
return result;
};
}
export { memo };