11 lines
274 B
JavaScript
Executable File
11 lines
274 B
JavaScript
Executable File
/** Coerces a value to a CSS pixel value. */
|
|
function coerceCssPixelValue(value) {
|
|
if (value == null) {
|
|
return '';
|
|
}
|
|
return typeof value === 'string' ? value : `${value}px`;
|
|
}
|
|
|
|
export { coerceCssPixelValue };
|
|
//# sourceMappingURL=css-pixel-value.mjs.map
|