summaryrefslogblamecommitdiff
path: root/node_modules/tailwindcss/src/util/isKeyframeRule.js
blob: a745e979b33ab4a8f134917bca5be4be877db0ee (plain) (tree)
1
2
3


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