wasm_lzma 0.1.0

esm modules for lzma/lzma2 compression and/or decompression, with sync and async (worker) versions
Documentation
1
2
3
4
5
6
importScripts('./lzma_dec_for_importScripts.js');
(async()=>{
  const fn=await unlzma;
  onmessage=async msg=>postMessage(fn(msg.data));
  postMessage('ready');
})();