(bytes: Uint8Array)
| 166 | } |
| 167 | |
| 168 | export async function gunzipBytes(bytes: Uint8Array): Promise<Uint8Array> { |
| 169 | return transformBytes(bytes, new DecompressionStream("gzip")); |
| 170 | } |
| 171 | |
| 172 | export function buildTar(entries: Array<TarInputEntry>): Uint8Array { |
| 173 | const chunks: Uint8Array[] = []; |
no test coverage detected