tor-browser

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

lazy-table-nan.js (244B)


      1 let i = new WebAssembly.Instance(new WebAssembly.Module(wasmTextToBinary(`
      2 (module
      3    (func $f (result f32)
      4        f32.const nan:0x42
      5    )
      6    (table (export "table") 10 funcref)
      7    (elem (i32.const 0) $f)
      8 )
      9 `))).exports;
     10 i.table.get(0)();