(func: Function | string, keyData: any)
| 198 | } |
| 199 | |
| 200 | static delete(func: Function | string, keyData: any): void { |
| 201 | _createCacheDirectoryIfNotExists(func); |
| 202 | const path = _getCachePath(func, keyData); |
| 203 | _remove(path); |
| 204 | } |
| 205 | |
| 206 | static deleteItems(func: Function | string, items: any[]): number { |
| 207 | const hashes = Cache.getItemsHashes(func, items); |
no test coverage detected