(data: string)
| 83 | * Compress a string. |
| 84 | */ |
| 85 | export function compress(data: string): Uint8Array { |
| 86 | return compressSync(strToU8(data)); |
| 87 | } |
| 88 | |
| 89 | function mergeUInt8Arrays(chunks: Uint8Array[]): Uint8Array { |
| 90 | // calculate data length |
no test coverage detected