mirror of
https://github.com/status-im/MyCrypto.git
synced 2026-08-31 02:31:13 +00:00
* 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 a853103862.
* correct typo
10 lines
266 B
JavaScript
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');
|
|
}
|