summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/internal/error_codes.ts
blob: 6af88bb112e539f915b9e6f987641c597327595b (plain)
1
2
3
4
5
6
7
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.

// Lazily initializes the error classes in this object.
// This trick is necessary for avoiding circular dendencies between
// `internal/errors` and other modules.
// deno-lint-ignore no-explicit-any
export const codes: Record<string, any> = {};