(hashes: Uint8Array[])
| 204 | } |
| 205 | |
| 206 | async hasObjects(hashes: Uint8Array[]): Promise<Uint8Array[]> { |
| 207 | return hasObjects(this.db, hashes); |
| 208 | } |
| 209 | |
| 210 | fetchObjects(hashes: Uint8Array[]): ReadableStream<{ hash: Uint8Array; bytes: Uint8Array }> { |
| 211 | return iterableToReadableStream(fetchObjects(this.db, hashes)); |
nothing calls this directly
no test coverage detected