10 lines
360 B
JavaScript
10 lines
360 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.convertFontWeightToStringFontWeight = convertFontWeightToStringFontWeight;
|
|
function convertFontWeightToStringFontWeight(fontWeight) {
|
|
if (typeof fontWeight === 'number') {
|
|
return String(fontWeight);
|
|
}
|
|
return fontWeight;
|
|
}
|
|
//# sourceMappingURL=style.js.map
|