tor-browser

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

console-log-symbol.any.js (292B)


      1 // META: global=window,dedicatedworker,shadowrealm
      2 "use strict";
      3 // https://console.spec.whatwg.org/
      4 
      5 test(() => {
      6    console.log(Symbol());
      7    console.log(Symbol("abc"));
      8    console.log(Symbol.for("def"));
      9    console.log(Symbol.isConcatSpreadable);
     10 }, "Logging a symbol doesn't throw");