Files
lcbp3.np-dms.work/frontend/node_modules/framer-motion/dist/es/utils/is-zero-value-string.mjs
2025-09-21 20:29:15 +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 };