tor-browser

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

length.js (483B)


      1 // Copyright (C) 2017 Josh Wolfe. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 /*---
      4 esid: sec-bigint.asintn
      5 description: BigInt.asIntN.length descriptor
      6 info: |
      7  BigInt.asIntN ( bits, bigint )
      8 
      9  17 ECMAScript Standard Built-in Objects
     10 
     11 includes: [propertyHelper.js]
     12 features: [BigInt]
     13 ---*/
     14 
     15 verifyProperty(BigInt.asIntN, "length", {
     16  value: 2,
     17  enumerable: false,
     18  writable: false,
     19  configurable: true
     20 });
     21 
     22 reportCompare(0, 0);