MCPcopy Index your code
hub / github.com/bigskysoftware/_hyperscript / _cssPropertyNames

Function _cssPropertyNames

www/js/_hyperscript.js:7568–7572  ·  view source on GitHub ↗
(css)

Source from the content-addressed store, hash-verified

7566 }
7567 };
7568 function _cssPropertyNames(css) {
7569 return css.split(";").map(function(p) {
7570 return p.split(":")[0].trim();
7571 }).filter(Boolean);
7572 }
7573 function _removeCssProperties(elt, propNames) {
7574 for (var i = 0; i < propNames.length; i++) elt.style.removeProperty(propNames[i]);
7575 }

Callers 2

resolveMethod · 0.70
resolveMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected