Files
pyrofetes-frontend/node_modules/@angular/cdk/fesm2022/css-pixel-value.mjs
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +01:00

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