UNPKG

framer-motion

Version:

A simple and powerful JavaScript animation library

11 lines (9 loc) 178 B
function memo(callback) { let result; return () => { if (result === undefined) result = callback(); return result; }; } export { memo };