UNPKG

motion-utils

Version:
12 lines (10 loc) 203 B
/*#__NO_SIDE_EFFECTS__*/ function memo(callback) { let result; return () => { if (result === undefined) result = callback(); return result; }; } export { memo };