-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgzip.ts
53 lines (46 loc) · 1.81 KB
/
gzip.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
* Gzip utilities.
*/
import '#@initialize.ts';
import { $bytes, $obj, $str } from '#index.ts';
/**
* Defines types.
*/
export type EncodeOptions = { deflate?: boolean };
export type DecodeOptions = { deflate?: boolean };
/**
* Gzip-encodes a string into a compressed byte array.
*
* @param str String to gzip.
* @param options All optional; {@see EncodeOptions}.
*
* @returns Byte array promise; {@see Uint8Array}.
*/
export const encode = async (str: string, options?: EncodeOptions): Promise<Uint8Array> => {
const opts = $obj.defaults({}, options || {}, { deflate: false }) as Required<EncodeOptions>,
chunks = [], // Initializes chunks.
readableStream = new Blob([str]).stream(),
compressedStream = readableStream.pipeThrough(new CompressionStream(opts.deflate ? 'deflate' : 'gzip'));
for await (const chunk of compressedStream as unknown as AsyncIterable<Uint8Array>) {
chunks.push(chunk); // Chunks of byte arrays.
}
return $bytes.combine(chunks);
};
/**
* Decodes a compressed byte array.
*
* @param bytes Compressed byte array.
* @param options All optional; {@see DecodeOptions}.
*
* @returns Decode string promise.
*/
export const decode = async (bytes: Uint8Array, options?: DecodeOptions): Promise<string> => {
const opts = $obj.defaults({}, options || {}, { deflate: false }) as Required<DecodeOptions>,
chunks = [], // Initializes chunks.
readableStream = new Blob([bytes]).stream(),
decompressedStream = readableStream.pipeThrough(new DecompressionStream(opts.deflate ? 'deflate' : 'gzip'));
for await (const chunk of decompressedStream as unknown as AsyncIterable<Uint8Array>) {
chunks.push(chunk); // Chunks of byte arrays.
}
return $str.textDecode(await $bytes.combine(chunks));
};