(str: string)
| 43 | |
| 44 | |
| 45 | function is_empty_string(str: string): boolean { |
| 46 | return !str || str.length === 0; |
| 47 | } |
| 48 | |
| 49 | function getInvalidStringKeys(value: KeyConfig): string[] { |
| 50 | const invalidKeys: string[] = []; |
no outgoing calls
no test coverage detected