Releases: packurl/wasm_zstd
0.2.0
Breaking change:
- worker functions now transfer the original array to the worker (making the original invalid) and transfer it back with the result.
Scripts:
zstd.mjs: exports bothzstdandunzstdfunctions; blocking version.zstd_enc.mjs: exports only thezstdfunction; blocking version.zstd_dec.mjs: exports only theunzstdfunction; blocking version.zstd_worker.mjs: exports bothzstdandunzstdfunctions; async version.zstd_worker_script.mjsandzstd.mjsare used by the web worker.zstd_worker_script.jsandzstd_for_importScripts.jsare variants for browsers that don't support module web workers.zstd_enc_worker.mjs: exports thezstdfunction; async version.zstd_enc_worker_script.mjsandzstd_enc.mjsare used by the web worker.zstd_enc_worker_script.jsandzstd_enc_for_importScripts.jsare variants for browsers that don't support module web workers.zstd_dec_worker.mjs: exports theunzstdfunction; async version.zstd_dec_worker_script.mjsandzstd_dec.mjsare used by the web worker.zstd_dec_worker_script.jsandzstd_dec_for_importScripts.jsare variants for browsers that don't support module web workers.
Initital Release
Scripts:
zstd.mjs: exports both zstd and unzstd functions; blocking version.
zstd_enc.mjs: exports only the zstd function; blocking version.
zstd_dec.mjs: exports only the unzstd function; blocking version.
zstd_worker.mjs: exports both zstd and unzstd functions; async version. zstd_worker_script.mjs and zstd.mjs are used by the web worker. zstd_worker_script.js and zstd_for_importScripts.js are variants for browsers that don't support module web workers.
zstd_enc_worker.mjs: exports the zstd function; async version. zstd_enc_worker_script.mjs and zstd_enc.mjs are used by the web worker. zstd_enc_worker_script.js and zstd_enc_for_importScripts.js are variants for browsers that don't support module web workers.
zstd_dec_worker.mjs: exports the unzstd function; async version. zstd_dec_worker_script.mjs and zstd_dec.mjs are used by the web worker. zstd_dec_worker_script.js and zstd_dec_for_importScripts.js are variants for browsers that don't support module web workers.