PluginProbe
Booking Calendar / 11.1
Booking Calendar v11.1
11.8.3 11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 10.11.2 All 203 releases
booking / vendors / sortablejs / src / BrowserInfo.js

BrowserInfo.js in Booking Calendar 11.1, at vendors/sortablejs/src/BrowserInfo.js

13 lines 569 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 function userAgent(pattern) {
2 if (typeof window !== 'undefined' && window.navigator) {
3 return !!/*@__PURE__*/navigator.userAgent.match(pattern);
4 }
5 }
6
7 export const IE11OrLess = userAgent(/(?:Trident.*rv[ :]?11\.|msie|iemobile|Windows Phone)/i);
8 export const Edge = userAgent(/Edge/i);
9 export const FireFox = userAgent(/firefox/i);
10 export const Safari = userAgent(/safari/i) && !userAgent(/chrome/i) && !userAgent(/android/i);
11 export const IOS = userAgent(/iP(ad|od|hone)/i);
12 export const ChromeForAndroid = userAgent(/chrome/i) && userAgent(/android/i);
13