(value: unknown)
| 42 | * @returns The stringified value. |
| 43 | */ |
| 44 | export function stringify(value: unknown): string { |
| 45 | return jsonStableStringify(value, { space: 2 }); |
| 46 | } |
| 47 | |
| 48 | // ─── JRPC Type Guards ─────────────────────────────────────────────────────────── |
| 49 |
no outgoing calls
no test coverage detected