wasm_br 0.12.1

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