css-pixel-value-C_HEqLhI.mjs 288 B

12345678910
  1. /** Coerces a value to a CSS pixel value. */
  2. function coerceCssPixelValue(value) {
  3. if (value == null) {
  4. return '';
  5. }
  6. return typeof value === 'string' ? value : `${value}px`;
  7. }
  8. export { coerceCssPixelValue as c };
  9. //# sourceMappingURL=css-pixel-value-C_HEqLhI.mjs.map