├── .eslintignore ├── .eslintrc ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── env.d.ts ├── package.json ├── src ├── UTF16 │ ├── __tests__ │ │ ├── UTF16.test.ts │ │ ├── __snapshots__ │ │ │ └── index.test.ts.snap │ │ └── index.test.ts │ ├── compressToUTF16.ts │ ├── decompressFromUTF16.ts │ └── index.ts ├── Uint8Array │ ├── __tests__ │ │ ├── Uint8Array.test.ts │ │ ├── __snapshots__ │ │ │ └── index.test.ts.snap │ │ └── index.test.ts │ ├── compressToUint8Array.ts │ ├── decompressFromUint8Array.ts │ ├── index.ts │ └── utils.ts ├── __snapshots__ │ └── index.test.ts.snap ├── __tests__ │ ├── __snapshots__ │ │ └── index.test.ts.snap │ ├── dist.commonjs.test.ts │ ├── dist.esmodule.test.ts │ ├── encoders.bench.ts │ ├── index.test.ts │ └── testFunctions.ts ├── _compress.ts ├── _decompress.ts ├── base64 │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── index.test.ts.snap │ │ ├── base64.test.ts │ │ └── index.test.ts │ ├── base64-string.ts │ ├── compressToBase64.ts │ ├── decompressFromBase64.ts │ ├── index.ts │ └── keyStrBase64.ts ├── cli.ts ├── custom │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── index.test.ts.snap │ │ ├── custom.test.ts │ │ └── index.test.ts │ ├── compressToCustom.ts │ ├── decompressFromCustom.ts │ └── index.ts ├── encodedURIComponent │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── index.test.ts.snap │ │ ├── encodedURIComponent.test.ts │ │ └── index.test.ts │ ├── compressToEncodedURIComponent.ts │ ├── decompressFromEncodedURIComponent.ts │ ├── index.ts │ └── keyStrUriSafe.ts ├── getBaseValue.ts ├── index.ts ├── node.ts └── raw │ ├── __tests__ │ ├── __snapshots__ │ │ └── index.test.ts.snap │ ├── index.test.ts │ └── raw.test.ts │ ├── compress.ts │ ├── decompress.ts │ └── index.ts ├── test ├── README.md ├── data │ ├── README.md │ ├── all_ascii │ │ ├── README.md │ │ ├── base64.bin │ │ ├── data.bin │ │ ├── data.sha256 │ │ ├── encodeduri.bin │ │ ├── raw.bin │ │ ├── uint8array.bin │ │ └── utf16.bin │ ├── all_utf16 │ │ ├── README.md │ │ ├── base64.bin │ │ ├── data.bin │ │ ├── data.sha256 │ │ ├── encodeduri.bin │ │ ├── raw.bin │ │ ├── uint8array.bin │ │ └── utf16.bin │ ├── hello_world │ │ ├── README.md │ │ ├── base64.bin │ │ ├── data.bin │ │ ├── data.sha256 │ │ ├── encodeduri.bin │ │ ├── raw.bin │ │ ├── uint8array.bin │ │ └── utf16.bin │ ├── lorem_ipsum │ │ ├── README.md │ │ ├── base64.bin │ │ ├── data.bin │ │ ├── data.sha256 │ │ ├── encodeduri.bin │ │ ├── raw.bin │ │ ├── uint8array.bin │ │ └── utf16.bin │ ├── pi │ │ ├── README.md │ │ ├── base64.bin │ │ ├── data.bin │ │ ├── data.sha256 │ │ ├── encodeduri.bin │ │ ├── raw.bin │ │ ├── uint8array.bin │ │ └── utf16.bin │ ├── repeated │ │ ├── README.md │ │ ├── base64.bin │ │ ├── data.bin │ │ ├── data.sha256 │ │ ├── encodeduri.bin │ │ ├── raw.bin │ │ ├── uint8array.bin │ │ └── utf16.bin │ └── tattoo │ │ ├── README.md │ │ ├── base64.bin │ │ ├── data.bin │ │ ├── data.sha256 │ │ ├── encodeduri.bin │ │ ├── raw.bin │ │ ├── uint8array.bin │ │ └── utf16.bin ├── profiles │ ├── README.md │ ├── cjs.sh │ ├── js.sh │ └── legacy.sh └── test.sh ├── tsconfig.json ├── vite.config.cli.mts └── vite.config.mts /.eslintignore: -------------------------------------------------------------------------------- 1 | bin 2 | coverage 3 | dist 4 | node_modules 5 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | **/*.bin 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/SECURITY.md -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/package.json -------------------------------------------------------------------------------- /src/UTF16/__tests__/UTF16.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/UTF16/__tests__/UTF16.test.ts -------------------------------------------------------------------------------- /src/UTF16/__tests__/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/UTF16/__tests__/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /src/UTF16/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/UTF16/__tests__/index.test.ts -------------------------------------------------------------------------------- /src/UTF16/compressToUTF16.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/UTF16/compressToUTF16.ts -------------------------------------------------------------------------------- /src/UTF16/decompressFromUTF16.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/UTF16/decompressFromUTF16.ts -------------------------------------------------------------------------------- /src/UTF16/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/UTF16/index.ts -------------------------------------------------------------------------------- /src/Uint8Array/__tests__/Uint8Array.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/Uint8Array/__tests__/Uint8Array.test.ts -------------------------------------------------------------------------------- /src/Uint8Array/__tests__/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/Uint8Array/__tests__/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /src/Uint8Array/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/Uint8Array/__tests__/index.test.ts -------------------------------------------------------------------------------- /src/Uint8Array/compressToUint8Array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/Uint8Array/compressToUint8Array.ts -------------------------------------------------------------------------------- /src/Uint8Array/decompressFromUint8Array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/Uint8Array/decompressFromUint8Array.ts -------------------------------------------------------------------------------- /src/Uint8Array/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/Uint8Array/index.ts -------------------------------------------------------------------------------- /src/Uint8Array/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/Uint8Array/utils.ts -------------------------------------------------------------------------------- /src/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/__tests__/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /src/__tests__/dist.commonjs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/__tests__/dist.commonjs.test.ts -------------------------------------------------------------------------------- /src/__tests__/dist.esmodule.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/__tests__/dist.esmodule.test.ts -------------------------------------------------------------------------------- /src/__tests__/encoders.bench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/__tests__/encoders.bench.ts -------------------------------------------------------------------------------- /src/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/__tests__/index.test.ts -------------------------------------------------------------------------------- /src/__tests__/testFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/__tests__/testFunctions.ts -------------------------------------------------------------------------------- /src/_compress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/_compress.ts -------------------------------------------------------------------------------- /src/_decompress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/_decompress.ts -------------------------------------------------------------------------------- /src/base64/__tests__/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/base64/__tests__/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /src/base64/__tests__/base64.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/base64/__tests__/base64.test.ts -------------------------------------------------------------------------------- /src/base64/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/base64/__tests__/index.test.ts -------------------------------------------------------------------------------- /src/base64/base64-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/base64/base64-string.ts -------------------------------------------------------------------------------- /src/base64/compressToBase64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/base64/compressToBase64.ts -------------------------------------------------------------------------------- /src/base64/decompressFromBase64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/base64/decompressFromBase64.ts -------------------------------------------------------------------------------- /src/base64/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/base64/index.ts -------------------------------------------------------------------------------- /src/base64/keyStrBase64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/base64/keyStrBase64.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/custom/__tests__/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/custom/__tests__/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /src/custom/__tests__/custom.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/custom/__tests__/custom.test.ts -------------------------------------------------------------------------------- /src/custom/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/custom/__tests__/index.test.ts -------------------------------------------------------------------------------- /src/custom/compressToCustom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/custom/compressToCustom.ts -------------------------------------------------------------------------------- /src/custom/decompressFromCustom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/custom/decompressFromCustom.ts -------------------------------------------------------------------------------- /src/custom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/custom/index.ts -------------------------------------------------------------------------------- /src/encodedURIComponent/__tests__/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/encodedURIComponent/__tests__/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /src/encodedURIComponent/__tests__/encodedURIComponent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/encodedURIComponent/__tests__/encodedURIComponent.test.ts -------------------------------------------------------------------------------- /src/encodedURIComponent/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/encodedURIComponent/__tests__/index.test.ts -------------------------------------------------------------------------------- /src/encodedURIComponent/compressToEncodedURIComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/encodedURIComponent/compressToEncodedURIComponent.ts -------------------------------------------------------------------------------- /src/encodedURIComponent/decompressFromEncodedURIComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/encodedURIComponent/decompressFromEncodedURIComponent.ts -------------------------------------------------------------------------------- /src/encodedURIComponent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/encodedURIComponent/index.ts -------------------------------------------------------------------------------- /src/encodedURIComponent/keyStrUriSafe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/encodedURIComponent/keyStrUriSafe.ts -------------------------------------------------------------------------------- /src/getBaseValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/getBaseValue.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/node.ts -------------------------------------------------------------------------------- /src/raw/__tests__/__snapshots__/index.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/raw/__tests__/__snapshots__/index.test.ts.snap -------------------------------------------------------------------------------- /src/raw/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/raw/__tests__/index.test.ts -------------------------------------------------------------------------------- /src/raw/__tests__/raw.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/raw/__tests__/raw.test.ts -------------------------------------------------------------------------------- /src/raw/compress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/raw/compress.ts -------------------------------------------------------------------------------- /src/raw/decompress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/raw/decompress.ts -------------------------------------------------------------------------------- /src/raw/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/src/raw/index.ts -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/README.md -------------------------------------------------------------------------------- /test/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/README.md -------------------------------------------------------------------------------- /test/data/all_ascii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/all_ascii/README.md -------------------------------------------------------------------------------- /test/data/all_ascii/base64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/all_ascii/base64.bin -------------------------------------------------------------------------------- /test/data/all_ascii/data.bin: -------------------------------------------------------------------------------- 1 | !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ -------------------------------------------------------------------------------- /test/data/all_ascii/data.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/all_ascii/data.sha256 -------------------------------------------------------------------------------- /test/data/all_ascii/encodeduri.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/all_ascii/encodeduri.bin -------------------------------------------------------------------------------- /test/data/all_ascii/raw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/all_ascii/raw.bin -------------------------------------------------------------------------------- /test/data/all_ascii/uint8array.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/all_ascii/uint8array.bin -------------------------------------------------------------------------------- /test/data/all_ascii/utf16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/all_ascii/utf16.bin -------------------------------------------------------------------------------- /test/data/all_utf16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/all_utf16/README.md -------------------------------------------------------------------------------- /test/data/all_utf16/base64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/all_utf16/base64.bin -------------------------------------------------------------------------------- /test/data/all_utf16/data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/all_utf16/data.bin -------------------------------------------------------------------------------- /test/data/all_utf16/data.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/all_utf16/data.sha256 -------------------------------------------------------------------------------- /test/data/all_utf16/encodeduri.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/all_utf16/encodeduri.bin -------------------------------------------------------------------------------- /test/data/all_utf16/raw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/all_utf16/raw.bin -------------------------------------------------------------------------------- /test/data/all_utf16/uint8array.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/all_utf16/uint8array.bin -------------------------------------------------------------------------------- /test/data/all_utf16/utf16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/all_utf16/utf16.bin -------------------------------------------------------------------------------- /test/data/hello_world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/hello_world/README.md -------------------------------------------------------------------------------- /test/data/hello_world/base64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/hello_world/base64.bin -------------------------------------------------------------------------------- /test/data/hello_world/data.bin: -------------------------------------------------------------------------------- 1 | Hello world -------------------------------------------------------------------------------- /test/data/hello_world/data.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/hello_world/data.sha256 -------------------------------------------------------------------------------- /test/data/hello_world/encodeduri.bin: -------------------------------------------------------------------------------- 1 | qYShsbQE9o9u6DZOgAJkA -------------------------------------------------------------------------------- /test/data/hello_world/raw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/hello_world/raw.bin -------------------------------------------------------------------------------- /test/data/hello_world/uint8array.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/hello_world/uint8array.bin -------------------------------------------------------------------------------- /test/data/hello_world/utf16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/hello_world/utf16.bin -------------------------------------------------------------------------------- /test/data/lorem_ipsum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/lorem_ipsum/README.md -------------------------------------------------------------------------------- /test/data/lorem_ipsum/base64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/lorem_ipsum/base64.bin -------------------------------------------------------------------------------- /test/data/lorem_ipsum/data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/lorem_ipsum/data.bin -------------------------------------------------------------------------------- /test/data/lorem_ipsum/data.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/lorem_ipsum/data.sha256 -------------------------------------------------------------------------------- /test/data/lorem_ipsum/encodeduri.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/lorem_ipsum/encodeduri.bin -------------------------------------------------------------------------------- /test/data/lorem_ipsum/raw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/lorem_ipsum/raw.bin -------------------------------------------------------------------------------- /test/data/lorem_ipsum/uint8array.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/lorem_ipsum/uint8array.bin -------------------------------------------------------------------------------- /test/data/lorem_ipsum/utf16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/lorem_ipsum/utf16.bin -------------------------------------------------------------------------------- /test/data/pi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/pi/README.md -------------------------------------------------------------------------------- /test/data/pi/base64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/pi/base64.bin -------------------------------------------------------------------------------- /test/data/pi/data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/pi/data.bin -------------------------------------------------------------------------------- /test/data/pi/data.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/pi/data.sha256 -------------------------------------------------------------------------------- /test/data/pi/encodeduri.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/pi/encodeduri.bin -------------------------------------------------------------------------------- /test/data/pi/raw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/pi/raw.bin -------------------------------------------------------------------------------- /test/data/pi/uint8array.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/pi/uint8array.bin -------------------------------------------------------------------------------- /test/data/pi/utf16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/pi/utf16.bin -------------------------------------------------------------------------------- /test/data/repeated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/repeated/README.md -------------------------------------------------------------------------------- /test/data/repeated/base64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/repeated/base64.bin -------------------------------------------------------------------------------- /test/data/repeated/data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/repeated/data.bin -------------------------------------------------------------------------------- /test/data/repeated/data.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/repeated/data.sha256 -------------------------------------------------------------------------------- /test/data/repeated/encodeduri.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/repeated/encodeduri.bin -------------------------------------------------------------------------------- /test/data/repeated/raw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/repeated/raw.bin -------------------------------------------------------------------------------- /test/data/repeated/uint8array.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/repeated/uint8array.bin -------------------------------------------------------------------------------- /test/data/repeated/utf16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/repeated/utf16.bin -------------------------------------------------------------------------------- /test/data/tattoo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/tattoo/README.md -------------------------------------------------------------------------------- /test/data/tattoo/base64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/tattoo/base64.bin -------------------------------------------------------------------------------- /test/data/tattoo/data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/tattoo/data.bin -------------------------------------------------------------------------------- /test/data/tattoo/data.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/tattoo/data.sha256 -------------------------------------------------------------------------------- /test/data/tattoo/encodeduri.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/tattoo/encodeduri.bin -------------------------------------------------------------------------------- /test/data/tattoo/raw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/tattoo/raw.bin -------------------------------------------------------------------------------- /test/data/tattoo/uint8array.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/tattoo/uint8array.bin -------------------------------------------------------------------------------- /test/data/tattoo/utf16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/data/tattoo/utf16.bin -------------------------------------------------------------------------------- /test/profiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/profiles/README.md -------------------------------------------------------------------------------- /test/profiles/cjs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/profiles/cjs.sh -------------------------------------------------------------------------------- /test/profiles/js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/profiles/js.sh -------------------------------------------------------------------------------- /test/profiles/legacy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/profiles/legacy.sh -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/test/test.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.cli.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/vite.config.cli.mts -------------------------------------------------------------------------------- /vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieroxy/lz-string/HEAD/vite.config.mts --------------------------------------------------------------------------------