@stylistic/stylelint-plugin
Version:
A collection of stylistic/formatting Stylelint rules
12 lines (10 loc) • 381 B
JavaScript
import hasBlock from "./hasBlock.js"
/**
* Check if a statement has an empty block.
*
* @param {import('postcss').Rule | import('postcss').AtRule} statement - postcss rule or at-rule node
* @return {boolean} True if the statement has a block and it is empty
*/
export default function hasEmptyBlock (statement) {
return hasBlock(statement) && statement.nodes.length === 0
}