UNPKG

174 BJavaScriptView Raw
1export default function handleError (err) {
2 alert(err.message + '\nCheck browser console for more info.')
3 console.error(err)
4 if (Sentry) Sentry.captureException(err)
5}