single-file-core 1.5.38 → 1.5.39
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/core/index.js +4 -2
- package/package.json +1 -1
package/core/index.js
CHANGED
|
@@ -575,8 +575,10 @@ class Processor {
|
|
|
575
575
|
}
|
|
576
576
|
}
|
|
577
577
|
const styleElement = this.doc.createElement("style");
|
|
578
|
-
|
|
579
|
-
|
|
578
|
+
if (this.doc.querySelector("img[src=\"data:,\"],source[src=\"data:,\"]")) {
|
|
579
|
+
styleElement.textContent = "img[src=\"data:,\"],source[src=\"data:,\"]{display:none!important}";
|
|
580
|
+
this.doc.head.appendChild(styleElement);
|
|
581
|
+
}
|
|
580
582
|
this.doc.head.querySelectorAll("noscript").forEach(element => element.parentElement.appendChild(element));
|
|
581
583
|
let size;
|
|
582
584
|
if (this.options.displayStats) {
|