mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 12:05:32 +00:00
44 lines
822 B
JavaScript
44 lines
822 B
JavaScript
// NOTICE: This file is generated by Rollup. To modify it,
|
|
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
|
|
'use strict';
|
|
|
|
const valueParser = require('postcss-value-parser');
|
|
const keywords = require('../reference/keywords.cjs');
|
|
const units = require('../reference/units.cjs');
|
|
|
|
/**
|
|
* Check if a word is a font-size value.
|
|
*
|
|
* @param {string} word
|
|
* @returns {boolean}
|
|
*/
|
|
function isValidFontSize(word) {
|
|
if (!word) {
|
|
return false;
|
|
}
|
|
|
|
if (keywords.fontSizeKeywords.has(word)) {
|
|
return true;
|
|
}
|
|
|
|
const numberUnit = valueParser.unit(word);
|
|
|
|
if (!numberUnit) {
|
|
return false;
|
|
}
|
|
|
|
const unit = numberUnit.unit;
|
|
|
|
if (unit === '%') {
|
|
return true;
|
|
}
|
|
|
|
if (units.lengthUnits.has(unit.toLowerCase())) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
module.exports = isValidFontSize;
|