blob: 9a9cbf74a48006705ca6da7c643b81fc85097c94 [file] [log] [blame]
/**
* Check if a statement has an block (empty or otherwise).
*
* @param {import('postcss').Container} statement
* @returns {boolean} True if `statement` has a block (empty or otherwise)
*/
export default function hasBlock(statement) {
return statement.nodes !== undefined;
}