(value: KeyConfig)
| 57 | } |
| 58 | |
| 59 | function getEmptyKeys(value: KeyConfig): string[] { |
| 60 | const emptyKeys: string[] = []; |
| 61 | for (const key in value) { |
| 62 | if (is_empty_string(value[key])) { |
| 63 | emptyKeys.push(key); |
| 64 | } |
| 65 | } |
| 66 | return emptyKeys; |
| 67 | } |
| 68 | |
| 69 | function googleCheck(value: KeyConfig): CheckResult { |
| 70 | const invalidKeys = getInvalidStringKeys(value); |
no test coverage detected