lz4.compressFrame = function lz4.uncompressFrame = function lz4.compressBlockBound = function lz4.compressBlock = function lz4.compressBlockHC = function lz4.uncompressBlock = function lz4.uncompressBlockWithDict = function ---------------------------------------- json = { "name": "@warren-bank/lz4-hc-wasm", "version": "3.0.0", "description": "WebAssembly implementation for LZ4 high compression encoder and decoder with support for both frame-level and block-level data formats.", "license": "BSD-3-Clause", "exports": { ".": { "browser": "./dist/web/lz4.js", "import": "./dist/esm/lz4.mjs", "require": "./dist/cjs/lz4.cjs" } }, "files": [ "dist/" ], "author": { "name": "Warren R. Bank", "email": "warren.r.bank@gmail.com", "url": "https://github.com/warren-bank" }, "repository": { "type": "git", "url": "https://github.com/warren-bank/wasm-lz4-hc" }, "keywords": [ "lz4", "hc", "variable", "high", "compression" ] } ---------------------------------------- lz4.compressFrame => Uint8Array with 621 bytes lz4.uncompressFrame => Uint8Array with 781 bytes after compression and decompression, json is the same ---------------------------------------- lz4.compressBlock => Uint8Array with 602 bytes lz4.uncompressBlock => Uint8Array with 781 bytes after compression and decompression, json is the same ---------------------------------------- lz4.compressBlockHC(compressionLevel=0) => Uint8Array with 545 bytes lz4.uncompressBlock => Uint8Array with 781 bytes after compression and decompression, json is the same ---------------------------------------- lz4.compressBlockHC(compressionLevel=1) => Uint8Array with 545 bytes lz4.uncompressBlock => Uint8Array with 781 bytes after compression and decompression, json is the same ---------------------------------------- lz4.compressBlockHC(compressionLevel=2) => Uint8Array with 545 bytes lz4.uncompressBlock => Uint8Array with 781 bytes after compression and decompression, json is the same ---------------------------------------- lz4.compressBlockHC(compressionLevel=3) => Uint8Array with 545 bytes lz4.uncompressBlock => Uint8Array with 781 bytes after compression and decompression, json is the same ---------------------------------------- lz4.compressBlockHC(compressionLevel=4) => Uint8Array with 545 bytes lz4.uncompressBlock => Uint8Array with 781 bytes after compression and decompression, json is the same ---------------------------------------- lz4.compressBlockHC(compressionLevel=5) => Uint8Array with 545 bytes lz4.uncompressBlock => Uint8Array with 781 bytes after compression and decompression, json is the same ---------------------------------------- lz4.compressBlockHC(compressionLevel=6) => Uint8Array with 545 bytes lz4.uncompressBlock => Uint8Array with 781 bytes after compression and decompression, json is the same ---------------------------------------- lz4.compressBlockHC(compressionLevel=7) => Uint8Array with 545 bytes lz4.uncompressBlock => Uint8Array with 781 bytes after compression and decompression, json is the same ---------------------------------------- lz4.compressBlockHC(compressionLevel=8) => Uint8Array with 545 bytes lz4.uncompressBlock => Uint8Array with 781 bytes after compression and decompression, json is the same ---------------------------------------- lz4.compressBlockHC(compressionLevel=9) => Uint8Array with 545 bytes lz4.uncompressBlock => Uint8Array with 781 bytes after compression and decompression, json is the same ----------------------------------------