Skip to content

Instantly share code, notes, and snippets.

@Samywamy10
Created September 17, 2021 11:17
Show Gist options
  • Select an option

  • Save Samywamy10/2f8d46130e6e5e91b498951a24723975 to your computer and use it in GitHub Desktop.

Select an option

Save Samywamy10/2f8d46130e6e5e91b498951a24723975 to your computer and use it in GitHub Desktop.
function isError(err: Error): err is Error {
return typeof err === 'object' && !!error && 'message' in err && 'name' in err;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment