mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-28 08:02:16 +08:00
9 lines
282 B
JavaScript
9 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;
|
|
}
|