physix / frontend /node_modules /tailwindcss /src /util /isKeyframeRule.js
Pratyush-01's picture
Upload folder using huggingface_hub
9d1374f verified
export default function isKeyframeRule(rule) {
return rule.parent && rule.parent.type === 'atrule' && /keyframes$/.test(rule.parent.name)
}