(newStringifier: Stringifier | undefined)
| 15 | * Return undefined to fall back to the generic behavior. |
| 16 | */ |
| 17 | export function setNormalizeStringifier(newStringifier: Stringifier | undefined): void { |
| 18 | stringifier = newStringifier; |
| 19 | } |
| 20 | |
| 21 | type Prototype = { constructor?: (...args: unknown[]) => unknown }; |
| 22 | // This is a hack to placate TS, relying on the fact that technically, arrays are objects with integer keys. Normally we |
no outgoing calls
no test coverage detected