database-petani-mobile/node_modules/framer-motion/dist/es/utils/is-zero-value-string.mjs
2026-02-23 16:39:35 +07:00

7 lines
159 B
JavaScript

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