@anio-js-foundation/error-object-to-string
v2.0.0
Published
Convert error object to string.
Downloads
3
Readme
@anio-js-foundation/error-object-to-string
import errorObjectToString from "@anio-js-foundation/error-object-to-string"
try {
throw new Error("oops!")
} catch (e) {
console.log(errorObjectToString(e))
}