@webqit/oohtml 5.0.8 → 5.0.9

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.
@@ -1319,7 +1319,7 @@ function isShadowRoot(value) {
1319
1319
  return value?.nodeType === 11 && Object.prototype.toString.call(value) === "[object ShadowRoot]";
1320
1320
  }
1321
1321
  function isDocument(value) {
1322
- return value?.nodeType === 9 && Object.prototype.toString.call(value) === "[object Document]";
1322
+ return value?.nodeType === 9;
1323
1323
  }
1324
1324
  function isCharacterData(value) {
1325
1325
  const toStringValue = Object.prototype.toString.call(value);