2.5.2 • Published 2 years ago

@terra-dev/browser-check v2.5.2

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

@terra-dev/browser-check

API

index.ts

import bowser from 'bowser';
import MobileDetect from 'mobile-detect';

/**
 * @deprecated use instead of <WalletProvider dangerously__chromeExtensionCompatibleBrowserCheck={} />
 */
export function isMathWallet(userAgent: string) {
  return /MathWallet\//.test(userAgent);
}

export const isMobile = () => {
  const mobileDetect = new MobileDetect(navigator.userAgent);

  return !!mobileDetect.os();
};

export const isDesktopChrome = (
  isChromeExtensionCompatibleBrowser: boolean,
): boolean => {
  const userAgent = navigator.userAgent;

  if (isChromeExtensionCompatibleBrowser) {
    return true;
  }

  const browser = bowser.getParser(userAgent);
  const mobileDetect = new MobileDetect(navigator.userAgent);

  return !!(
    browser.satisfies({
      chrome: '>60',
      edge: '>80',
    }) && !mobileDetect.os()
  );
};

Examples

__tests__/useragent.test.ts

import { getParser } from 'bowser';

describe('browserslist', () => {
  test.each([
    'Mozilla/5.0 (Macintosh; Intel Mac OS X 11_1_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',
    'Mozilla/5.0 (Macintosh; Intel Mac OS X 11_0_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4298.0 Safari/537.36',
  ])('should be user agent is chrome (%s)', (userAgent: string) => {
    const browser = getParser(userAgent);
    expect(
      browser.satisfies({
        chrome: '>60',
      }),
    ).toBeTruthy();
  });
});
2.5.0

2 years ago

2.5.2

2 years ago

2.5.1

2 years ago

2.5.3

2 years ago

2.5.0-alpha.1

2 years ago

2.5.1-alpha.1

2 years ago

2.4.0-alpha.3

3 years ago

2.4.0-alpha.2

3 years ago

2.4.0-alpha.1

3 years ago

2.3.0

3 years ago

2.3.0-alpha.1

3 years ago

2.2.0

3 years ago

2.1.0

3 years ago

2.1.0-alpha.4

3 years ago

2.1.0-alpha.3

3 years ago

2.1.0-alpha.2

3 years ago

2.1.0-alpha.1

3 years ago

2.0.0

3 years ago

2.0.0-alpha.2

3 years ago

1.4.0-alpha.3

3 years ago

2.0.0-alpha.1

3 years ago

1.4.0-alpha.1

3 years ago

1.2.4-alpha.1

3 years ago

1.2.4

3 years ago

1.2.3

3 years ago

1.2.2-alpha.1

3 years ago

1.2.3-alpha.1

3 years ago

1.2.2

3 years ago

1.3.0-alpha.1

3 years ago

1.2.1

3 years ago

1.2.1-alpha.1

3 years ago

1.2.0

3 years ago

1.2.0-alpha.1

3 years ago

1.1.0

3 years ago

1.1.0-alpha.1

3 years ago

1.1.0-alpha.2

3 years ago

1.0.0

3 years ago

1.0.0-alpha.3

3 years ago

1.0.0-alpha.1

3 years ago

0.16.0-alpha.7

3 years ago

0.16.0-alpha.6

3 years ago