DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
142 Bytes
export default function isKeyframeRule(rule) {
return rule.parent && rule.parent.type === 'atrule' && /keyframes$/.test(rule.parent.name)
}