(a: [string, number])
| 249 | const queryData = (options: Option = {}, filters?: Filter[]): ClientResponse => { |
| 250 | |
| 251 | const convert = (a: [string, number]) => ({ |
| 252 | name: a[0], |
| 253 | count: a[1] |
| 254 | }) |
| 255 | |
| 256 | const versionToString = (version: Version): string => { |
| 257 | let versionString = '' + version.major |
nothing calls this directly
no outgoing calls
no test coverage detected