(cacheKey, data)
| 162 | }, |
| 163 | |
| 164 | async _saveToCache(cacheKey, data) { |
| 165 | const base64Data = this._arrayBufferToBase64(data); |
| 166 | await dbStorage.setItem("indices", cacheKey, base64Data); |
| 167 | }, |
| 168 | |
| 169 | async preload(groupIndex, baseDir) { |
| 170 | const cacheKey = `${baseDir}/${groupIndex}`; |
nothing calls this directly
no outgoing calls
no test coverage detected