(value: unknown)
| 89 | * @returns A normalized JSON string |
| 90 | */ |
| 91 | export function normalizedStringify(value: unknown): string { |
| 92 | return JSON.stringify(normalizeValue(value)) |
| 93 | } |
| 94 | |
| 95 | /** Normalized loop result type with only essential fields */ |
| 96 | interface NormalizedLoop { |
no outgoing calls
no test coverage detected