@100mslive/roomkit-react 0.3.19-alpha.14 → 0.3.19-alpha.16

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,13 +0,0 @@
1
- import { parsedUserAgent } from '@100mslive/react-sdk';
2
- import { isSafari } from '../../common/constants';
3
-
4
- export const doesBrowserSupportEffectsSDK = () => {
5
- if (!isSafari) {
6
- return true;
7
- }
8
- const browserVersion = parsedUserAgent?.getBrowser()?.version || '16';
9
- if (browserVersion && parseInt(browserVersion.split('.')[0]) < 17) {
10
- return false;
11
- }
12
- return true;
13
- };