isCssNotEmpty function

bool isCssNotEmpty(
  1. CSSStyleDeclaration css
)

Returns true if CSSStyleDeclaration is not empty.

Implementation

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