This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const MAX_DEPTH = 10; | |
| const MAX_ITEMS = 100; | |
| const MAX_STRING_LENGTH = 10_000; | |
| const RESERVED_ERROR_KEYS = new Set([ | |
| 'name', | |
| 'message', | |
| 'stack', | |
| 'cause', | |
| 'errors', |