bradleymeck

CSSRules.cssText vs HTMLStyleElement.textContent

Is there a good reason to use Array.from(styleElem.cssRules, r => r.cssText).join('') over styleElem...

create