MyCrypto/common/badBrowserCheckA.js
Danny Skubak 6718e7ef65 Refactor Bad Browser Check (#1996)
* move bad browser check into standalone files

* refactor dup var

* remove console logs

* have warning support all browser versions

* Revert "have warning support all browser versions".

Webpack conventions still cause IE8 to break.

This reverts commit a8531038622d2419a3da342ddfe0c356a90e4eee.

* correct typo
2018-07-02 16:39:25 -05:00

10 lines
266 B
JavaScript

// use dates as vars so they're not stripped out by minification
let letCheck = new Date();
const constCheck = new Date();
const arrowCheck = (() => new Date())();
if (letCheck && constCheck && arrowCheck) {
window.localStorage.setItem('goodBrowser', 'true');
}