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.