// Copyright (c) 2023 Ecma International. All rights reserved. // This code is governed by the BSD license found in the LICENSE file.
/*--- esid: sec-map.groupby description: Callback is not called and object is not populated if the iterable is empty info: | Map.groupBy ( items, callbackfn )
... GroupBy ( items, callbackfn, coercion )
6. Repeat, c. If next is false, then i. Return groups. ... features: [array-grouping, Map]
---*/
const original = [];
const map = Map.groupBy(original, function () { thrownew Test262Error('callback function should not be called')
});
assert.notSameValue(original, map, 'Map.groupBy returns a map'); assert.sameValue(map.size, 0);
reportCompare(0, 0);
Messung V0.5
¤ Dauer der Verarbeitung: 0.10 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.