Add missing feature flag array-grouping

This commit is contained in:
legendecas 2022-03-06 14:56:51 +08:00 committed by Rick Waldron
parent 5fb0f5b6d2
commit d8fb00d741
2 changed files with 5 additions and 1 deletions

View File

@ -260,6 +260,10 @@ ShadowRealm
# https://github.com/tc39/proposal-array-find-from-last
array-find-from-last
# Array.prototype.groupBy & Array.prototype.groupByToMap
# https://github.com/tc39/proposal-array-grouping
array-grouping
# Intl.DurationFormat
# https://github.com/tc39/proposal-intl-duration-format
Intl.DurationFormat

View File

@ -25,7 +25,7 @@ info: |
16. Assert: Each of the above calls returns true.
17. Return unscopableList.
includes: [propertyHelper.js]
features: [Symbol.unscopables, array-find-from-last]
features: [Symbol.unscopables, array-find-from-last, array-grouping]
---*/
var unscopables = Array.prototype[Symbol.unscopables];