mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-21 05:25:33 +00:00
18 lines
342 B
JavaScript
18 lines
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';
|
|
}
|