# code-snippets/3.9.1/js/utils/errors.ts

Code Snippets, version 3.9.1. 4 lines.

- Page: https://pluginprobe.com/plugins/code-snippets/3.9.1/code/js/utils/errors.ts
- Raw: https://pluginprobe.com/plugins/code-snippets/3.9.1/raw/js/utils/errors.ts
- Modified: 2024-11-27T16:52:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-snippets/3.9.1/code/js/utils/errors.ts#L10-L20`.

```typescript
export const handleUnknownError = (error: unknown) => {
	console.error(error)
}

```
