stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
44 lines (33 loc) • 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).
;
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;