(config: KeyConfig)
| 113 | ]); |
| 114 | |
| 115 | export function examToken(config: KeyConfig): boolean { |
| 116 | for (const value of Object.values(config)) { |
| 117 | if (value.length == 0) { |
| 118 | return false; |
| 119 | } |
| 120 | } |
| 121 | return true; |
| 122 | } |
no outgoing calls
no test coverage detected