mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 22:29:30 +08:00
3 lines
142 B
Text
3 lines
142 B
Text
export default function isKeyframeRule(rule) {
|
|
return rule.parent && rule.parent.type === 'atrule' && /keyframes$/.test(rule.parent.name)
|
|
}
|