jsx-dom-runtime
Advanced tools
Comparing version 0.61.0 to 0.62.0
const appendChildren = (children, node) => { | ||
if (Array.isArray(children)) { | ||
children.some(child => appendChildren(child, node)); | ||
} else if (null != children && false !== children) { | ||
} else if (false !== children && null != children) { | ||
node.append(children); | ||
@@ -6,0 +6,0 @@ } |
{ | ||
"name": "jsx-dom-runtime", | ||
"version": "0.61.0", | ||
"version": "0.62.0", | ||
"description": "A tiny in 500 bytes library to JSX syntax templates for DOM. Support HTML, SVG and MathML tags", | ||
@@ -5,0 +5,0 @@ "type": "module", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
115798