Drop support for Internet Explorer

This commit is contained in:
Pierre Ossman
2020-10-15 16:48:08 +02:00
parent 499eee4d06
commit c01eb5e74d
11 changed files with 17 additions and 108 deletions
-4
View File
@@ -106,10 +106,6 @@ export function isSafari() {
navigator.userAgent.indexOf('Chrome') === -1);
}
export function isIE() {
return navigator && !!(/trident/i).exec(navigator.userAgent);
}
export function isEdge() {
return navigator && !!(/edge/i).exec(navigator.userAgent);
}