tor-browser

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

testMatchAsCondition.js (185B)


      1 function testMatchAsCondition() {
      2    var a = ['0', '0', '0', '0'];
      3    var r = /0/;
      4    "x".q;
      5    for (var z = 0; z < 4; z++)
      6        a[z].match(r) ? 1 : 2;
      7 }
      8 testMatchAsCondition();