(func: Function | string)
| 123 | } |
| 124 | |
| 125 | function getCachedFiles(func: Function | string): string[] { |
| 126 | const fnName = getFnName(func); |
| 127 | const fnCacheDir = path.join(Cache.cacheDirectory, fnName);; |
| 128 | const cacheDir = fnCacheDir; |
| 129 | return getFilesWithoutJsonExtension(cacheDir); |
| 130 | } |
| 131 | |
| 132 | class Cache { |
| 133 | static cacheDirectory = relativePath('cache'); |
no test coverage detected