tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

file_stringencoding.sys.mjs (194B)


      1 export function checkFromESM(is_op) {
      2  is_op(new TextDecoder().encoding, "utf-8", "ESM should have TextDecoder");
      3  is_op(new TextEncoder().encoding, "utf-8", "ESM should have TextEncoder");
      4 }