tor-browser

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

asIntN.js (518B)


      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 property 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 assert.sameValue(typeof BigInt.asIntN, 'function');
     16 
     17 verifyProperty(BigInt, "asIntN", {
     18  enumerable: false,
     19  writable: true,
     20  configurable: true
     21 });
     22 
     23 reportCompare(0, 0);