@webqit/oohtml 5.0.8 → 5.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bindings-api.js +1 -1
- package/dist/bindings-api.js.map +2 -2
- package/dist/context-api.js +1 -1
- package/dist/context-api.js.map +2 -2
- package/dist/data-binding.js.map +2 -2
- package/dist/html-imports.js +1 -1
- package/dist/html-imports.js.map +2 -2
- package/dist/main.js +1 -1
- package/dist/main.js.map +2 -2
- package/dist/main.lite.js +1 -1
- package/dist/main.lite.js.map +2 -2
- package/dist/namespaced-html.js +1 -1
- package/dist/namespaced-html.js.map +2 -2
- package/dist/scoped-css.js +1 -1
- package/dist/scoped-css.js.map +2 -2
- package/dist/scoped-js.js.map +2 -2
- package/package.json +2 -2
package/dist/bindings-api.js
CHANGED
|
@@ -1301,7 +1301,7 @@ function isShadowRoot(value) {
|
|
|
1301
1301
|
return value?.nodeType === 11 && Object.prototype.toString.call(value) === "[object ShadowRoot]";
|
|
1302
1302
|
}
|
|
1303
1303
|
function isDocument(value) {
|
|
1304
|
-
return value?.nodeType === 9
|
|
1304
|
+
return value?.nodeType === 9;
|
|
1305
1305
|
}
|
|
1306
1306
|
function isCharacterData(value) {
|
|
1307
1307
|
const toStringValue = Object.prototype.toString.call(value);
|