0.1.1 • Published 9 months ago

@zalari/string-compression-utils v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
9 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 '@zalari/string-compression-utils';

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(compressedString);

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

console.assert(input === output);