tor-browser

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

length.js (1076B)


      1 // Copyright (C) 2015 André Bargull. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 es6id: 20.1.2.5
      6 description: >
      7  Number.isSafeInteger.length is 1.
      8 info: |
      9  Number.isSafeInteger ( number )
     10 
     11  17 ECMAScript Standard Built-in Objects:
     12    Every built-in Function object, including constructors, has a length
     13    property whose value is an integer. Unless otherwise specified, this
     14    value is equal to the largest number of named arguments shown in the
     15    subclause headings for the function description, including optional
     16    parameters. However, rest parameters shown using the form “...name”
     17    are not included in the default argument count.
     18 
     19    Unless otherwise specified, the length property of a built-in Function
     20    object has the attributes { [[Writable]]: false, [[Enumerable]]: false,
     21    [[Configurable]]: true }.
     22 includes: [propertyHelper.js]
     23 ---*/
     24 
     25 verifyProperty(Number.isSafeInteger, "length", {
     26  value: 1,
     27  writable: false,
     28  enumerable: false,
     29  configurable: true
     30 });
     31 
     32 reportCompare(0, 0);