mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 03:55:32 +00:00
10 lines
282 B
JavaScript
10 lines
282 B
JavaScript
/**
|
|
* 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;
|
|
}
|