in src/Errors/index.ts [13:23]
export function isError(obj: any): obj is Error {
return (
obj &&
obj.name &&
obj.message &&
obj.stack &&
typeof obj.name === "string" &&
typeof obj.message === "string" &&
typeof obj.stack === "string"
);
}