blob: ceb3abbf502d0f29531ea63a5b53ecb29e04a58d [file] [log] [blame]
// 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;