stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
18 lines (14 loc) • 342 B
JavaScript
import { isAtRule } from './typeGuards.mjs';
/**
* Check if a rule is a keyframe one
*
* @param {import('postcss').Rule} rule
* @returns {boolean}
*/
export default function isKeyframeRule(rule) {
const parent = rule.parent;
if (!parent) {
return false;
}
return isAtRule(parent) && parent.name.toLowerCase() === 'keyframes';
}