tor-browser

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

nonexistent.js (287B)


      1 // Copyright (C) 2017 Igalia, S.L. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 description: BigInt does not have a static parseInt function
      6 features: [BigInt]
      7 ---*/
      8 
      9 assert(!BigInt.hasOwnProperty("parseInt"));
     10 
     11 reportCompare(0, 0);