(format: string)
| 36 | } |
| 37 | |
| 38 | function isStructured(format: string): boolean { |
| 39 | return format === 'json' || format === 'yaml' |
| 40 | } |
| 41 | |
| 42 | function serialize(value: unknown, format: string): string { |
| 43 | if (format === 'yaml') |
no outgoing calls
no test coverage detected