stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
27 lines (21 loc) • 575 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 keywords = require('../reference/keywords.cjs');
/**
* Check whether a string is a keyframe selector.
*
* @param {string} selector
* @returns {boolean}
*/
function isKeyframeSelector(selector) {
if (keywords.keyframeSelectorKeywords.has(selector)) {
return true;
}
// Percentages
if (/^(?:\d+|\d*\.\d+)%$/.test(selector)) {
return true;
}
return false;
}
module.exports = isKeyframeSelector;