lemonadejs
Advanced tools
Comparing version 4.0.0-beta.2 to 4.0.0-beta.3
@@ -137,3 +137,3 @@ /** | ||
const isDOM = function(o) { | ||
return (o instanceof Element || o instanceof HTMLDocument || o instanceof DocumentFragment); | ||
return (o instanceof HTMLElement || o instanceof Element || o instanceof DocumentFragment); | ||
} | ||
@@ -864,7 +864,7 @@ | ||
} | ||
// Process the first child | ||
o = o.firstChild; | ||
} | ||
// Process the first child | ||
o = o.firstChild; | ||
// Keep reference to the root elements | ||
@@ -871,0 +871,0 @@ if (o.tagName === 'ROOT') { |
@@ -142,3 +142,3 @@ /** | ||
const isDOM = function(o) { | ||
return (o instanceof Element || o instanceof HTMLDocument || o instanceof DocumentFragment); | ||
return (o instanceof HTMLElement || o instanceof Element || o instanceof DocumentFragment); | ||
} | ||
@@ -869,7 +869,7 @@ | ||
} | ||
// Process the first child | ||
o = o.firstChild; | ||
} | ||
// Process the first child | ||
o = o.firstChild; | ||
// Keep reference to the root elements | ||
@@ -876,0 +876,0 @@ if (o.tagName === 'ROOT') { |
@@ -42,3 +42,3 @@ { | ||
"types": "dist/lemonade.d.ts", | ||
"version": "4.0.0-beta.2" | ||
"version": "4.0.0-beta.3" | ||
} |
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
91951