heartbeat-monitor/node_modules/motion-utils/dist/es/is-zero-value-string.mjs

8 lines
209 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 };
//# sourceMappingURL=is-zero-value-string.mjs.map