2.3.0 • Published 3 months ago

@witzbould/utils-string-compression v2.3.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 months ago

String Compression

Compress or decompress a string with native browser APIs with 'gzip', 'deflate', or 'deflate-raw'.\ Compatible to use with atob and btoa.

Example Usage

import { compress, decompress } from '@witzbould/utils-string-compression';

const input = '{"id":1,"todo":"Do something nice for someone you care about","completed":true,"userId":26}';

const compressedString = await compress(input, 'gzip');
const urlFriendly = encodeURIComponent(btoa(compressedString));

const binaryString = atob(decodeURIComponent(urlFriendly));
const output = await decompress(binaryString, 'gzip');

console.assert(input === output);