@bbearai/core 0.2.14 → 0.2.15
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/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -173,7 +173,7 @@ var ContextCaptureManager = class {
|
|
|
173
173
|
});
|
|
174
174
|
}
|
|
175
175
|
captureFetch() {
|
|
176
|
-
if (typeof window === "undefined" || typeof fetch === "undefined") return;
|
|
176
|
+
if (typeof window === "undefined" || typeof fetch === "undefined" || typeof document === "undefined") return;
|
|
177
177
|
this.originalFetch = window.fetch;
|
|
178
178
|
const self = this;
|
|
179
179
|
window.fetch = async function(input, init) {
|
package/dist/index.mjs
CHANGED
|
@@ -144,7 +144,7 @@ var ContextCaptureManager = class {
|
|
|
144
144
|
});
|
|
145
145
|
}
|
|
146
146
|
captureFetch() {
|
|
147
|
-
if (typeof window === "undefined" || typeof fetch === "undefined") return;
|
|
147
|
+
if (typeof window === "undefined" || typeof fetch === "undefined" || typeof document === "undefined") return;
|
|
148
148
|
this.originalFetch = window.fetch;
|
|
149
149
|
const self = this;
|
|
150
150
|
window.fetch = async function(input, init) {
|