Files
ETB/ETB-FrontEnd/node_modules/motion-utils/dist/es/is-zero-value-string.mjs
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03: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 };