mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2026-09-26 20:41:45 +00:00
10 lines
207 B
TypeScript
10 lines
207 B
TypeScript
import LZ4 from "lz4js";
|
|
|
|
export function compress(data: Uint8Array): Uint8Array {
|
|
return LZ4.compress(data);
|
|
}
|
|
|
|
export function decompress(data: Uint8Array): Uint8Array {
|
|
return LZ4.decompress(data);
|
|
}
|