blob: 0603e9e114eec535a42cf70e9d6bc7d07882a349 (
plain)
1
2
3
4
5
6
7
|
// Copyright 2018-2024 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> = {};
|