tor-browser

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

length.js (528B)


      1 // Copyright (c) 2023 Ecma International.  All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-map.groupby
      6 description: Map.groupBy property length descriptor
      7 info: |
      8  Map.groupBy ( items, callbackfn )
      9 
     10  ...
     11 
     12    17 ECMAScript Standard Built-in Objects
     13 
     14  ...
     15 
     16 includes: [propertyHelper.js]
     17 features: [array-grouping, Map]
     18 ---*/
     19 
     20 verifyProperty(Map.groupBy, "length", {
     21  value: 2,
     22  enumerable: false,
     23  writable: false,
     24  configurable: true
     25 });
     26 
     27 reportCompare(0, 0);