UNPKG

@stylistic/stylelint-plugin

Version:
10 lines (9 loc) 273 B
/** * Check if a statement has an block (empty or otherwise). * * @param {import('postcss').Container} statement * @return {boolean} True if `statement` has a block (empty or otherwise) */ export function hasBlock (statement) { return statement.nodes !== undefined }