酒店预订平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
557 B

  1. function userAgent(pattern) {
  2. if (typeof window !== 'undefined' && window.navigator) {
  3. return !!/*@__PURE__*/navigator.userAgent.match(pattern);
  4. }
  5. }
  6. export const IE11OrLess = userAgent(/(?:Trident.*rv[ :]?11\.|msie|iemobile|Windows Phone)/i);
  7. export const Edge = userAgent(/Edge/i);
  8. export const FireFox = userAgent(/firefox/i);
  9. export const Safari = userAgent(/safari/i) && !userAgent(/chrome/i) && !userAgent(/android/i);
  10. export const IOS = userAgent(/iP(ad|od|hone)/i);
  11. export const ChromeForAndroid = userAgent(/chrome/i) && userAgent(/android/i);