(value: boolean | undefined)
| 194 | } |
| 195 | |
| 196 | function boolToTag(value: boolean | undefined): string | undefined { |
| 197 | if (value === undefined) { |
| 198 | return undefined; |
| 199 | } |
| 200 | return String(value); |
| 201 | } |
| 202 | function setTagIfDefined(key: string, value: string | undefined): void { |
| 203 | if (!value) { |
| 204 | return; |
no outgoing calls
no test coverage detected