()
| 98 | const APP_VERSION: string = workerData?.appVersion ?? '' |
| 99 | |
| 100 | function getQueryCacheDir(): string { |
| 101 | const cacheDir = getCacheDir() |
| 102 | return cacheDir ? path.join(cacheDir, 'query') : '' |
| 103 | } |
| 104 | |
| 105 | const CACHEABLE_QUERIES = new Set([ |
| 106 | 'getAvailableYears', |
no test coverage detected