File size: 321 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
export const reportGlobalError =
typeof reportError === 'function'
? // In modern browsers, reportError will dispatch an error event,
// emulating an uncaught JavaScript error.
reportError
: (error: unknown) => {
// TODO: Dispatch error event
globalThis.console.error(error)
}
|