forked from github/browser-detection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrowser-detection.js
More file actions
37 lines (35 loc) · 1.1 KB
/
browser-detection.js
File metadata and controls
37 lines (35 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
'use strict';
var isAndroid = require('./is-android');
var isChrome = require('./is-chrome');
var isIe = require('./is-ie');
var isIe9 = require('./is-ie9');
var isIe10 = require('./is-ie10');
var isIe11 = require('./is-ie11');
var isEdge = require('./is-edge');
var isIos = require('./is-ios');
var isIosFirefox = require('./is-ios-firefox');
var isIosSafari = require('./is-ios-safari');
var isIosUIWebview = require('./is-ios-uiwebview');
var isIosWebview = require('./is-ios-webview');
var isIosWKWebview = require('./is-ios-wkwebview');
var isMobileFirefox = require('./is-mobile-firefox');
var isSamsungBrowser = require('./is-samsung');
var supportsPopups = require('./supports-popups');
module.exports = {
isAndroid: isAndroid,
isChrome: isChrome,
isIe: isIe,
isIe9: isIe9,
isIe10: isIe10,
isIe11: isIe11,
isEdge: isEdge,
isIos: isIos,
isIosFirefox: isIosFirefox,
isIosSafari: isIosSafari,
isIosUIWebview: isIosUIWebview,
isIosWebview: isIosWebview,
isIosWKWebview: isIosWKWebview,
isMobileFirefox: isMobileFirefox,
isSamsungBrowser: isSamsungBrowser,
supportsPopups: supportsPopups
};