mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-12 22:52:21 -06:00
12 lines
248 B
JavaScript
12 lines
248 B
JavaScript
/* @flow */
|
|
"use strict"
|
|
|
|
/**
|
|
* Check if a rule is a keyframe one
|
|
*/
|
|
module.exports = function (rule/*: postcss$rule*/)/*: boolean*/ {
|
|
const parent = rule.parent
|
|
|
|
return parent.type === "atrule" && parent.name.toLowerCase() === "keyframes"
|
|
}
|