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 8614ea6 commit 26efac5Copy full SHA for 26efac5
packages/browser/src/lib/browser-polyfill.ts
@@ -4,6 +4,8 @@ export function shouldPolyfill(): boolean {
4
Edge: 13,
5
}
6
7
+ const isOperaMiniExtremeMode = (window as any).operamini // compression proxy - allows for page() calls.
8
+
9
// Unfortunately IE doesn't follow the same pattern as other browsers, so we
10
// need to check `isIE11` differently.
11
// @ts-expect-error
@@ -14,10 +16,8 @@ export function shouldPolyfill(): boolean {
14
16
15
17
return (
18
isIE11 ||
19
+ isOperaMiniExtremeMode ||
20
(browserVersionCompatList[browser] !== undefined &&
21
browserVersionCompatList[browser] >= parseInt(version))
22
)
23
-
-// appName = Netscape IE / Edge
-// edge 13 Edge/13... same as FF
0 commit comments