Files
TactiTerm/frontend/node_modules/tailwindcss/src/util/isKeyframeRule.js
T
2026-07-21 22:24:25 +00:00

4 lines
142 B
JavaScript

export default function isKeyframeRule(rule) {
return rule.parent && rule.parent.type === 'atrule' && /keyframes$/.test(rule.parent.name)
}