Press n or j to go to the next uncovered block, b, p or k for the previous block.
/** * Check if the value is a zero value string like "0px" or "0%" */ export const isZeroValueString = (v: string) => /^0[^.\s]+$/.test(v)