(response: CliResponse)
| 177 | const SUPPORTED_LIST_TYPES = new Set(["template", "capture", "macro", "multi"]); |
| 178 | |
| 179 | function serialize(response: CliResponse): string { |
| 180 | return JSON.stringify(response); |
| 181 | } |
| 182 | |
| 183 | function isTruthy(value: string | undefined): boolean { |
| 184 | if (value === undefined) return false; |
no outgoing calls
no test coverage detected