isCssNotEmpty function

bool isCssNotEmpty(
  1. CssStyleDeclaration css
)

Returns true if CssStyleDeclaration is not empty.

Implementation

bool isCssNotEmpty(CssStyleDeclaration css) {
  return !isCssEmpty(css);
}