No chequear si existe navigator.userAgent

¡Existe desde IE 4!
This commit is contained in:
Cat /dev/Nulo 2021-09-20 14:18:31 -03:00
parent 9d2d811b10
commit dd230c2fa1

View file

@ -1,7 +1,6 @@
import BotDetector from 'device-detector-js/dist/parsers/bot' import BotDetector from 'device-detector-js/dist/parsers/bot'
import { Notifier } from '@airbrake/browser' import { Notifier } from '@airbrake/browser'
if ('userAgent' in navigator) {
window.bot_detector = new BotDetector window.bot_detector = new BotDetector
const bot = window.bot_detector.parse(navigator.userAgent) const bot = window.bot_detector.parse(navigator.userAgent)
@ -18,7 +17,6 @@ if ('userAgent' in navigator) {
return console.originalError(...e) return console.originalError(...e)
} }
} }
}
import 'core-js/stable' import 'core-js/stable'
import 'regenerator-runtime/runtime' import 'regenerator-runtime/runtime'