Correspondents/node_modules/motion-utils/dist/es/is-zero-value-string.mjs
2025-11-14 06:32:36 -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 };