DIR : /home/kozerus/public_html/cropex/node/node_modules/motion-utils/dist/es/memo.mjs
/home/kozerus/public_html/cropex/node/node_modules/motion-utils/dist/es
/*#__NO_SIDE_EFFECTS__*/
function memo(callback) {
let result;
return () => {
if (result === undefined)
result = callback();
return result;
};
}
export { memo };
//