Sha256: c5d09e7cbc4151ee5448f6035fc4b44b8a261ffdb627d6cf98a4ff7035bc891d
Contents?: true
Size: 394 Bytes
Versions: 24
Compression:
Stored size: 394 Bytes
Contents
'use strict'; /** * 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 */ module.exports = function (statement) { return ( statement.nodes !== undefined && statement.nodes.length === 0 // has block ); // and is empty };
Version data entries
24 entries across 24 versions & 1 rubygems