(value: any)
| 217 | } |
| 218 | |
| 219 | function handleDefineValue(value: any): string { |
| 220 | if (typeof value === 'undefined') return 'undefined' |
| 221 | if (typeof value === 'string') return value |
| 222 | return JSON.stringify(value) |
| 223 | } |
no outgoing calls
no test coverage detected