TypeScript err
const reportError = ({message}) => {
// send the error to our logging service...
}
try {
throw new Error('Oh no!')
} catch (error) {
// we'll proceed, but let's report it
reportError({message: error.message})
}
Vast Vendace