UNPKG

motion

Version:

The Motion library for the web

13 lines (11 loc) 271 B
const data = new WeakMap(); function getAnimationData(element) { if (!data.has(element)) { data.set(element, { activeTransforms: [], activeAnimations: {}, }); } return data.get(element); } export { getAnimationData };