UNPKG

framer-motion

Version:

A simple and powerful JavaScript animation library

11 lines (9 loc) 250 B
/** * Provided a value and a ValueType, returns the value as that value type. */ const getValueAsType = (value, type) => { return type && typeof value === "number" ? type.transform(value) : value; }; export { getValueAsType };