is-zero-value-string.mjs 159 B

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