Files
Gemini-Search/node_modules/tailwindcss/lib/util/isKeyframeRule.js
Ammaar Reshi d6025af146 Initial commit
2025-01-04 14:06:53 +00:00

14 lines
340 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "default", {
enumerable: true,
get: function() {
return isKeyframeRule;
}
});
function isKeyframeRule(rule) {
return rule.parent && rule.parent.type === "atrule" && /keyframes$/.test(rule.parent.name);
}