UNPKG

framer-motion

Version:

A simple and powerful JavaScript animation library

7 lines (5 loc) 159 B
/** * Check if the value is a zero value string like "0px" or "0%" */ const isZeroValueString = (v) => /^0[^.\s]+$/u.test(v); export { isZeroValueString };