UNPKG
twitchtvapp-nicer00ster
Version:
latest (1.0.0)
1.0.0
twitchtv show active users
twitchtvapp-nicer00ster
/
bower_components
/
popper.js
/
packages
/
popper
/
src
/
utils
/
isIE10.js
15 lines
(13 loc)
•
290 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * Tells if you are running Internet Explorer 10 *
@method
*
@memberof
Popper.Utils *
@returns
{
Boolean
}
isIE10
*/
let
isIE10 =
undefined
;
export
default
function
(
) {
if
(isIE10 ===
undefined
) { isIE10 = navigator.
appVersion
.
indexOf
(
'MSIE 10'
) !== -
1
; }
return
isIE10; }