length.js (535B)
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-object.groupby 6 description: Object.groupBy property length descriptor 7 info: | 8 Object.groupBy ( items, callbackfn ) 9 10 ... 11 12 17 ECMAScript Standard Built-in Objects 13 14 ... 15 16 includes: [propertyHelper.js] 17 features: [array-grouping] 18 ---*/ 19 20 verifyProperty(Object.groupBy, "length", { 21 value: 2, 22 enumerable: false, 23 writable: false, 24 configurable: true 25 }); 26 27 reportCompare(0, 0);