mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-07-01 19:47:18 +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)
|
|
}
|