We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28293f9 commit 944dd90Copy full SHA for 944dd90
src/client.ts
@@ -718,7 +718,7 @@ export class BrowserUse {
718
// Preserve legacy string encoding behavior for now
719
headers.values.has('content-type')) ||
720
// `Blob` is superset of `File`
721
- body instanceof Blob ||
+ ((globalThis as any).Blob && body instanceof (globalThis as any).Blob) ||
722
// `FormData` -> `multipart/form-data`
723
body instanceof FormData ||
724
// `URLSearchParams` -> `application/x-www-form-urlencoded`
0 commit comments