(func: Function | string, keyData: any)
| 149 | } |
| 150 | |
| 151 | static has(func: Function | string, keyData: any): boolean { |
| 152 | _createCacheDirectoryIfNotExists(func); |
| 153 | const path = _getCachePath(func, keyData); |
| 154 | return _has(path); |
| 155 | } |
| 156 | |
| 157 | static get(func: Function | string, keyData: any, raiseException = true): any { |
| 158 | if (Array.isArray(keyData)) { |
no test coverage detected