Skip to content

0.7.0

Choose a tag to compare

@programingjd programingjd released this 26 Nov 21:35
· 10 commits to main since this release

Rebuilt with updated dependencies.

Scripts:

  • brotli.mjs: exports both br and unbr functions; blocking version.
  • brotli_enc.mjs: exports only the br function; blocking version.
  • brotli_dec.mjs: exports only the unbr function; blocking version.
  • brotli_worker.mjs: exports both br and unbr functions; async version. brotli_worker_script.mjs and brotli.mjs are used by the web worker. brotli_worker_script.js and brotli_for_importScripts.js are variants for browsers that don't support module web workers.
  • brotli_enc_worker.mjs: exports the br function; async version. brotli_enc_worker_script.mjs and brotli_enc.mjs are used by the web worker. brotli_enc_worker_script.js and brotli_enc_for_importScripts.js are variants for browsers that don't support module web workers.
  • brotli_dec_worker.mjs: exports the unbr function; async version. brotli_dec_worker_script.mjs and brotli_dec.mjs are used by the web worker. brotli_dec_worker_script.js and brotli_dec_for_importScripts.js are variants for browsers that don't support module web workers.