UNPKG

framer-motion

Version:

A simple and powerful React animation library

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