gitextract_z7vhhxp5/ ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── build-and-deploy-pages.yml │ ├── build-bundles.yml │ ├── build-website-for-branch.yml │ ├── build-website.yml │ └── ci.yml ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── babel.config.js ├── deno/ │ └── corejs/ │ ├── LICENSE │ ├── README.md │ └── index.js ├── docs/ │ ├── 2019-03-19-core-js-3-babel-and-a-look-into-the-future.md │ ├── 2023-02-14-so-whats-next.md │ ├── web/ │ │ ├── 404.md │ │ ├── docs/ │ │ │ ├── engines.md │ │ │ ├── features/ │ │ │ │ ├── ecmascript/ │ │ │ │ │ ├── array.md │ │ │ │ │ ├── collections.md │ │ │ │ │ ├── date.md │ │ │ │ │ ├── error.md │ │ │ │ │ ├── explicit-resource-management.md │ │ │ │ │ ├── function.md │ │ │ │ │ ├── globalthis.md │ │ │ │ │ ├── iterator.md │ │ │ │ │ ├── json.md │ │ │ │ │ ├── math.md │ │ │ │ │ ├── number.md │ │ │ │ │ ├── object.md │ │ │ │ │ ├── promise.md │ │ │ │ │ ├── reflect.md │ │ │ │ │ ├── string-regexp.md │ │ │ │ │ ├── symbol.md │ │ │ │ │ └── typed-arrays.md │ │ │ │ ├── iteration-helpers.md │ │ │ │ ├── proposals/ │ │ │ │ │ ├── accessible-object-prototype-hasownproperty.md │ │ │ │ │ ├── array-deduplication.md │ │ │ │ │ ├── array-filtering.md │ │ │ │ │ ├── array-find-from-last.md │ │ │ │ │ ├── array-fromasync.md │ │ │ │ │ ├── array-grouping.md │ │ │ │ │ ├── array-istemplateobject.md │ │ │ │ │ ├── array-prototype-flat-flatmap.md │ │ │ │ │ ├── array-prototype-includes.md │ │ │ │ │ ├── arraybuffer-prototype-transfer.md │ │ │ │ │ ├── asynciterator-helpers.md │ │ │ │ │ ├── change-array-by-copy.md │ │ │ │ │ ├── compositekey-compositesymbol.md │ │ │ │ │ ├── dataview-get-set-uint8clamped.md │ │ │ │ │ ├── error-iserror.md │ │ │ │ │ ├── explicit-resource-management.md │ │ │ │ │ ├── float16-methods.md │ │ │ │ │ ├── function-is-callable-is-constructor.md │ │ │ │ │ ├── function-prototype-demethodize.md │ │ │ │ │ ├── globalthis.md │ │ │ │ │ ├── iterator-chunking.md │ │ │ │ │ ├── iterator-helpers.md │ │ │ │ │ ├── iterator-range.md │ │ │ │ │ ├── iterator-sequencing.md │ │ │ │ │ ├── joint-iteration.md │ │ │ │ │ ├── json-parse-source-text-access.md │ │ │ │ │ ├── map-upsert.md │ │ │ │ │ ├── math-sumprecise.md │ │ │ │ │ ├── new-collections-methods.md │ │ │ │ │ ├── number-from-string.md │ │ │ │ │ ├── number-prototype-clamp.md │ │ │ │ │ ├── object-fromentries.md │ │ │ │ │ ├── object-getownpropertydescriptors.md │ │ │ │ │ ├── object-values-entries.md │ │ │ │ │ ├── observable.md │ │ │ │ │ ├── of-and-from-methods-on-collections.md │ │ │ │ │ ├── promise-allsettled.md │ │ │ │ │ ├── promise-any.md │ │ │ │ │ ├── promise-prototype-finally.md │ │ │ │ │ ├── promise-try.md │ │ │ │ │ ├── promise-withresolvers.md │ │ │ │ │ ├── reflect-metadata.md │ │ │ │ │ ├── regexp-dotall-flag.md │ │ │ │ │ ├── regexp-escaping.md │ │ │ │ │ ├── regexp-named-capture-groups.md │ │ │ │ │ ├── relative-indexing-method.md │ │ │ │ │ ├── set-methods.md │ │ │ │ │ ├── string-cooked.md │ │ │ │ │ ├── string-dedent.md │ │ │ │ │ ├── string-matchall.md │ │ │ │ │ ├── string-padding.md │ │ │ │ │ ├── string-prototype-codepoints.md │ │ │ │ │ ├── string-replaceall.md │ │ │ │ │ ├── string-trimstart-trimend.md │ │ │ │ │ ├── symbol-asynciterator.md │ │ │ │ │ ├── symbol-custommatcher-for-extractors.md │ │ │ │ │ ├── symbol-custommatcher-pattern-matching.md │ │ │ │ │ ├── symbol-metadata.md │ │ │ │ │ ├── symbol-predicates.md │ │ │ │ │ ├── symbol-prototype-description.md │ │ │ │ │ ├── uint8array-base64-hex.md │ │ │ │ │ ├── well-formed-jsonstringify.md │ │ │ │ │ └── well-formed-unicode-strings.md │ │ │ │ └── web-standards/ │ │ │ │ ├── base64-utility-methods.md │ │ │ │ ├── dom-exception.md │ │ │ │ ├── iterable-dom-collections.md │ │ │ │ ├── queuemicrotask.md │ │ │ │ ├── self.md │ │ │ │ ├── setimmediate.md │ │ │ │ ├── settimeout-setinterval.md │ │ │ │ ├── structured-clone.md │ │ │ │ └── url-and-urlsearchparams.md │ │ │ ├── menu.json │ │ │ ├── missing-polyfills.md │ │ │ └── usage.md │ │ └── index.md │ └── zh_CN/ │ ├── 2019-03-19-core-js-3-babel-and-a-look-into-the-future.md │ └── 2023-02-14-so-whats-next.md ├── package.json ├── packages/ │ ├── core-js/ │ │ ├── .npmignore │ │ ├── README.md │ │ ├── actual/ │ │ │ ├── README.md │ │ │ ├── aggregate-error.js │ │ │ ├── array/ │ │ │ │ ├── at.js │ │ │ │ ├── concat.js │ │ │ │ ├── copy-within.js │ │ │ │ ├── entries.js │ │ │ │ ├── every.js │ │ │ │ ├── fill.js │ │ │ │ ├── filter.js │ │ │ │ ├── find-index.js │ │ │ │ ├── find-last-index.js │ │ │ │ ├── find-last.js │ │ │ │ ├── find.js │ │ │ │ ├── flat-map.js │ │ │ │ ├── flat.js │ │ │ │ ├── for-each.js │ │ │ │ ├── from-async.js │ │ │ │ ├── from.js │ │ │ │ ├── group-by-to-map.js │ │ │ │ ├── group-by.js │ │ │ │ ├── group-to-map.js │ │ │ │ ├── group.js │ │ │ │ ├── includes.js │ │ │ │ ├── index-of.js │ │ │ │ ├── index.js │ │ │ │ ├── is-array.js │ │ │ │ ├── iterator.js │ │ │ │ ├── join.js │ │ │ │ ├── keys.js │ │ │ │ ├── last-index-of.js │ │ │ │ ├── map.js │ │ │ │ ├── of.js │ │ │ │ ├── push.js │ │ │ │ ├── reduce-right.js │ │ │ │ ├── reduce.js │ │ │ │ ├── reverse.js │ │ │ │ ├── slice.js │ │ │ │ ├── some.js │ │ │ │ ├── sort.js │ │ │ │ ├── splice.js │ │ │ │ ├── to-reversed.js │ │ │ │ ├── to-sorted.js │ │ │ │ ├── to-spliced.js │ │ │ │ ├── unshift.js │ │ │ │ ├── values.js │ │ │ │ ├── virtual/ │ │ │ │ │ ├── at.js │ │ │ │ │ ├── concat.js │ │ │ │ │ ├── copy-within.js │ │ │ │ │ ├── entries.js │ │ │ │ │ ├── every.js │ │ │ │ │ ├── fill.js │ │ │ │ │ ├── filter.js │ │ │ │ │ ├── find-index.js │ │ │ │ │ ├── find-last-index.js │ │ │ │ │ ├── find-last.js │ │ │ │ │ ├── find.js │ │ │ │ │ ├── flat-map.js │ │ │ │ │ ├── flat.js │ │ │ │ │ ├── for-each.js │ │ │ │ │ ├── group-by-to-map.js │ │ │ │ │ ├── group-by.js │ │ │ │ │ ├── group-to-map.js │ │ │ │ │ ├── group.js │ │ │ │ │ ├── includes.js │ │ │ │ │ ├── index-of.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── iterator.js │ │ │ │ │ ├── join.js │ │ │ │ │ ├── keys.js │ │ │ │ │ ├── last-index-of.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── push.js │ │ │ │ │ ├── reduce-right.js │ │ │ │ │ ├── reduce.js │ │ │ │ │ ├── reverse.js │ │ │ │ │ ├── slice.js │ │ │ │ │ ├── some.js │ │ │ │ │ ├── sort.js │ │ │ │ │ ├── splice.js │ │ │ │ │ ├── to-reversed.js │ │ │ │ │ ├── to-sorted.js │ │ │ │ │ ├── to-spliced.js │ │ │ │ │ ├── unshift.js │ │ │ │ │ ├── values.js │ │ │ │ │ └── with.js │ │ │ │ └── with.js │ │ │ ├── array-buffer/ │ │ │ │ ├── constructor.js │ │ │ │ ├── detached.js │ │ │ │ ├── index.js │ │ │ │ ├── is-view.js │ │ │ │ ├── slice.js │ │ │ │ ├── transfer-to-fixed-length.js │ │ │ │ └── transfer.js │ │ │ ├── async-disposable-stack/ │ │ │ │ ├── constructor.js │ │ │ │ └── index.js │ │ │ ├── async-iterator/ │ │ │ │ ├── async-dispose.js │ │ │ │ ├── drop.js │ │ │ │ ├── every.js │ │ │ │ ├── filter.js │ │ │ │ ├── find.js │ │ │ │ ├── flat-map.js │ │ │ │ ├── for-each.js │ │ │ │ ├── from.js │ │ │ │ ├── index.js │ │ │ │ ├── map.js │ │ │ │ ├── reduce.js │ │ │ │ ├── some.js │ │ │ │ ├── take.js │ │ │ │ └── to-array.js │ │ │ ├── atob.js │ │ │ ├── btoa.js │ │ │ ├── clear-immediate.js │ │ │ ├── data-view/ │ │ │ │ ├── get-float16.js │ │ │ │ ├── index.js │ │ │ │ └── set-float16.js │ │ │ ├── date/ │ │ │ │ ├── get-year.js │ │ │ │ ├── index.js │ │ │ │ ├── now.js │ │ │ │ ├── set-year.js │ │ │ │ ├── to-gmt-string.js │ │ │ │ ├── to-iso-string.js │ │ │ │ ├── to-json.js │ │ │ │ ├── to-primitive.js │ │ │ │ └── to-string.js │ │ │ ├── disposable-stack/ │ │ │ │ ├── constructor.js │ │ │ │ └── index.js │ │ │ ├── dom-collections/ │ │ │ │ ├── for-each.js │ │ │ │ ├── index.js │ │ │ │ └── iterator.js │ │ │ ├── dom-exception/ │ │ │ │ ├── constructor.js │ │ │ │ ├── index.js │ │ │ │ └── to-string-tag.js │ │ │ ├── error/ │ │ │ │ ├── constructor.js │ │ │ │ ├── index.js │ │ │ │ ├── is-error.js │ │ │ │ └── to-string.js │ │ │ ├── escape.js │ │ │ ├── function/ │ │ │ │ ├── bind.js │ │ │ │ ├── has-instance.js │ │ │ │ ├── index.js │ │ │ │ ├── metadata.js │ │ │ │ ├── name.js │ │ │ │ └── virtual/ │ │ │ │ ├── bind.js │ │ │ │ └── index.js │ │ │ ├── get-iterator-method.js │ │ │ ├── get-iterator.js │ │ │ ├── global-this.js │ │ │ ├── index.js │ │ │ ├── instance/ │ │ │ │ ├── at.js │ │ │ │ ├── bind.js │ │ │ │ ├── code-point-at.js │ │ │ │ ├── concat.js │ │ │ │ ├── copy-within.js │ │ │ │ ├── ends-with.js │ │ │ │ ├── entries.js │ │ │ │ ├── every.js │ │ │ │ ├── fill.js │ │ │ │ ├── filter.js │ │ │ │ ├── find-index.js │ │ │ │ ├── find-last-index.js │ │ │ │ ├── find-last.js │ │ │ │ ├── find.js │ │ │ │ ├── flags.js │ │ │ │ ├── flat-map.js │ │ │ │ ├── flat.js │ │ │ │ ├── for-each.js │ │ │ │ ├── group-by-to-map.js │ │ │ │ ├── group-by.js │ │ │ │ ├── group-to-map.js │ │ │ │ ├── group.js │ │ │ │ ├── includes.js │ │ │ │ ├── index-of.js │ │ │ │ ├── is-well-formed.js │ │ │ │ ├── keys.js │ │ │ │ ├── last-index-of.js │ │ │ │ ├── map.js │ │ │ │ ├── match-all.js │ │ │ │ ├── pad-end.js │ │ │ │ ├── pad-start.js │ │ │ │ ├── push.js │ │ │ │ ├── reduce-right.js │ │ │ │ ├── reduce.js │ │ │ │ ├── repeat.js │ │ │ │ ├── replace-all.js │ │ │ │ ├── reverse.js │ │ │ │ ├── slice.js │ │ │ │ ├── some.js │ │ │ │ ├── sort.js │ │ │ │ ├── splice.js │ │ │ │ ├── starts-with.js │ │ │ │ ├── to-reversed.js │ │ │ │ ├── to-sorted.js │ │ │ │ ├── to-spliced.js │ │ │ │ ├── to-well-formed.js │ │ │ │ ├── trim-end.js │ │ │ │ ├── trim-left.js │ │ │ │ ├── trim-right.js │ │ │ │ ├── trim-start.js │ │ │ │ ├── trim.js │ │ │ │ ├── unshift.js │ │ │ │ ├── values.js │ │ │ │ └── with.js │ │ │ ├── is-iterable.js │ │ │ ├── iterator/ │ │ │ │ ├── concat.js │ │ │ │ ├── dispose.js │ │ │ │ ├── drop.js │ │ │ │ ├── every.js │ │ │ │ ├── filter.js │ │ │ │ ├── find.js │ │ │ │ ├── flat-map.js │ │ │ │ ├── for-each.js │ │ │ │ ├── from.js │ │ │ │ ├── index.js │ │ │ │ ├── map.js │ │ │ │ ├── reduce.js │ │ │ │ ├── some.js │ │ │ │ ├── take.js │ │ │ │ ├── to-array.js │ │ │ │ ├── to-async.js │ │ │ │ ├── zip-keyed.js │ │ │ │ └── zip.js │ │ │ ├── json/ │ │ │ │ ├── index.js │ │ │ │ ├── is-raw-json.js │ │ │ │ ├── parse.js │ │ │ │ ├── raw-json.js │ │ │ │ ├── stringify.js │ │ │ │ └── to-string-tag.js │ │ │ ├── map/ │ │ │ │ ├── get-or-insert-computed.js │ │ │ │ ├── get-or-insert.js │ │ │ │ ├── group-by.js │ │ │ │ └── index.js │ │ │ ├── math/ │ │ │ │ ├── acosh.js │ │ │ │ ├── asinh.js │ │ │ │ ├── atanh.js │ │ │ │ ├── cbrt.js │ │ │ │ ├── clz32.js │ │ │ │ ├── cosh.js │ │ │ │ ├── expm1.js │ │ │ │ ├── f16round.js │ │ │ │ ├── fround.js │ │ │ │ ├── hypot.js │ │ │ │ ├── imul.js │ │ │ │ ├── index.js │ │ │ │ ├── log10.js │ │ │ │ ├── log1p.js │ │ │ │ ├── log2.js │ │ │ │ ├── sign.js │ │ │ │ ├── sinh.js │ │ │ │ ├── sum-precise.js │ │ │ │ ├── tanh.js │ │ │ │ ├── to-string-tag.js │ │ │ │ └── trunc.js │ │ │ ├── number/ │ │ │ │ ├── constructor.js │ │ │ │ ├── epsilon.js │ │ │ │ ├── index.js │ │ │ │ ├── is-finite.js │ │ │ │ ├── is-integer.js │ │ │ │ ├── is-nan.js │ │ │ │ ├── is-safe-integer.js │ │ │ │ ├── max-safe-integer.js │ │ │ │ ├── min-safe-integer.js │ │ │ │ ├── parse-float.js │ │ │ │ ├── parse-int.js │ │ │ │ ├── to-exponential.js │ │ │ │ ├── to-fixed.js │ │ │ │ ├── to-precision.js │ │ │ │ └── virtual/ │ │ │ │ ├── index.js │ │ │ │ ├── to-exponential.js │ │ │ │ ├── to-fixed.js │ │ │ │ └── to-precision.js │ │ │ ├── object/ │ │ │ │ ├── assign.js │ │ │ │ ├── create.js │ │ │ │ ├── define-getter.js │ │ │ │ ├── define-properties.js │ │ │ │ ├── define-property.js │ │ │ │ ├── define-setter.js │ │ │ │ ├── entries.js │ │ │ │ ├── freeze.js │ │ │ │ ├── from-entries.js │ │ │ │ ├── get-own-property-descriptor.js │ │ │ │ ├── get-own-property-descriptors.js │ │ │ │ ├── get-own-property-names.js │ │ │ │ ├── get-own-property-symbols.js │ │ │ │ ├── get-prototype-of.js │ │ │ │ ├── group-by.js │ │ │ │ ├── has-own.js │ │ │ │ ├── index.js │ │ │ │ ├── is-extensible.js │ │ │ │ ├── is-frozen.js │ │ │ │ ├── is-sealed.js │ │ │ │ ├── is.js │ │ │ │ ├── keys.js │ │ │ │ ├── lookup-getter.js │ │ │ │ ├── lookup-setter.js │ │ │ │ ├── prevent-extensions.js │ │ │ │ ├── proto.js │ │ │ │ ├── seal.js │ │ │ │ ├── set-prototype-of.js │ │ │ │ ├── to-string.js │ │ │ │ └── values.js │ │ │ ├── parse-float.js │ │ │ ├── parse-int.js │ │ │ ├── promise/ │ │ │ │ ├── all-settled.js │ │ │ │ ├── any.js │ │ │ │ ├── finally.js │ │ │ │ ├── index.js │ │ │ │ ├── try.js │ │ │ │ └── with-resolvers.js │ │ │ ├── queue-microtask.js │ │ │ ├── reflect/ │ │ │ │ ├── apply.js │ │ │ │ ├── construct.js │ │ │ │ ├── define-property.js │ │ │ │ ├── delete-property.js │ │ │ │ ├── get-own-property-descriptor.js │ │ │ │ ├── get-prototype-of.js │ │ │ │ ├── get.js │ │ │ │ ├── has.js │ │ │ │ ├── index.js │ │ │ │ ├── is-extensible.js │ │ │ │ ├── own-keys.js │ │ │ │ ├── prevent-extensions.js │ │ │ │ ├── set-prototype-of.js │ │ │ │ ├── set.js │ │ │ │ └── to-string-tag.js │ │ │ ├── regexp/ │ │ │ │ ├── constructor.js │ │ │ │ ├── dot-all.js │ │ │ │ ├── escape.js │ │ │ │ ├── flags.js │ │ │ │ ├── index.js │ │ │ │ ├── match.js │ │ │ │ ├── replace.js │ │ │ │ ├── search.js │ │ │ │ ├── split.js │ │ │ │ ├── sticky.js │ │ │ │ ├── test.js │ │ │ │ └── to-string.js │ │ │ ├── self.js │ │ │ ├── set/ │ │ │ │ ├── difference.js │ │ │ │ ├── index.js │ │ │ │ ├── intersection.js │ │ │ │ ├── is-disjoint-from.js │ │ │ │ ├── is-subset-of.js │ │ │ │ ├── is-superset-of.js │ │ │ │ ├── symmetric-difference.js │ │ │ │ └── union.js │ │ │ ├── set-immediate.js │ │ │ ├── set-interval.js │ │ │ ├── set-timeout.js │ │ │ ├── string/ │ │ │ │ ├── anchor.js │ │ │ │ ├── at.js │ │ │ │ ├── big.js │ │ │ │ ├── blink.js │ │ │ │ ├── bold.js │ │ │ │ ├── code-point-at.js │ │ │ │ ├── ends-with.js │ │ │ │ ├── fixed.js │ │ │ │ ├── fontcolor.js │ │ │ │ ├── fontsize.js │ │ │ │ ├── from-code-point.js │ │ │ │ ├── includes.js │ │ │ │ ├── index.js │ │ │ │ ├── is-well-formed.js │ │ │ │ ├── italics.js │ │ │ │ ├── iterator.js │ │ │ │ ├── link.js │ │ │ │ ├── match-all.js │ │ │ │ ├── match.js │ │ │ │ ├── pad-end.js │ │ │ │ ├── pad-start.js │ │ │ │ ├── raw.js │ │ │ │ ├── repeat.js │ │ │ │ ├── replace-all.js │ │ │ │ ├── replace.js │ │ │ │ ├── search.js │ │ │ │ ├── small.js │ │ │ │ ├── split.js │ │ │ │ ├── starts-with.js │ │ │ │ ├── strike.js │ │ │ │ ├── sub.js │ │ │ │ ├── substr.js │ │ │ │ ├── sup.js │ │ │ │ ├── to-well-formed.js │ │ │ │ ├── trim-end.js │ │ │ │ ├── trim-left.js │ │ │ │ ├── trim-right.js │ │ │ │ ├── trim-start.js │ │ │ │ ├── trim.js │ │ │ │ └── virtual/ │ │ │ │ ├── anchor.js │ │ │ │ ├── at.js │ │ │ │ ├── big.js │ │ │ │ ├── blink.js │ │ │ │ ├── bold.js │ │ │ │ ├── code-point-at.js │ │ │ │ ├── ends-with.js │ │ │ │ ├── fixed.js │ │ │ │ ├── fontcolor.js │ │ │ │ ├── fontsize.js │ │ │ │ ├── includes.js │ │ │ │ ├── index.js │ │ │ │ ├── is-well-formed.js │ │ │ │ ├── italics.js │ │ │ │ ├── iterator.js │ │ │ │ ├── link.js │ │ │ │ ├── match-all.js │ │ │ │ ├── pad-end.js │ │ │ │ ├── pad-start.js │ │ │ │ ├── repeat.js │ │ │ │ ├── replace-all.js │ │ │ │ ├── small.js │ │ │ │ ├── starts-with.js │ │ │ │ ├── strike.js │ │ │ │ ├── sub.js │ │ │ │ ├── substr.js │ │ │ │ ├── sup.js │ │ │ │ ├── to-well-formed.js │ │ │ │ ├── trim-end.js │ │ │ │ ├── trim-left.js │ │ │ │ ├── trim-right.js │ │ │ │ ├── trim-start.js │ │ │ │ └── trim.js │ │ │ ├── structured-clone.js │ │ │ ├── suppressed-error.js │ │ │ ├── symbol/ │ │ │ │ ├── async-dispose.js │ │ │ │ ├── async-iterator.js │ │ │ │ ├── description.js │ │ │ │ ├── dispose.js │ │ │ │ ├── for.js │ │ │ │ ├── has-instance.js │ │ │ │ ├── index.js │ │ │ │ ├── is-concat-spreadable.js │ │ │ │ ├── iterator.js │ │ │ │ ├── key-for.js │ │ │ │ ├── match-all.js │ │ │ │ ├── match.js │ │ │ │ ├── metadata.js │ │ │ │ ├── replace.js │ │ │ │ ├── search.js │ │ │ │ ├── species.js │ │ │ │ ├── split.js │ │ │ │ ├── to-primitive.js │ │ │ │ ├── to-string-tag.js │ │ │ │ └── unscopables.js │ │ │ ├── typed-array/ │ │ │ │ ├── at.js │ │ │ │ ├── copy-within.js │ │ │ │ ├── entries.js │ │ │ │ ├── every.js │ │ │ │ ├── fill.js │ │ │ │ ├── filter.js │ │ │ │ ├── find-index.js │ │ │ │ ├── find-last-index.js │ │ │ │ ├── find-last.js │ │ │ │ ├── find.js │ │ │ │ ├── float32-array.js │ │ │ │ ├── float64-array.js │ │ │ │ ├── for-each.js │ │ │ │ ├── from-base64.js │ │ │ │ ├── from-hex.js │ │ │ │ ├── from.js │ │ │ │ ├── includes.js │ │ │ │ ├── index-of.js │ │ │ │ ├── index.js │ │ │ │ ├── int16-array.js │ │ │ │ ├── int32-array.js │ │ │ │ ├── int8-array.js │ │ │ │ ├── iterator.js │ │ │ │ ├── join.js │ │ │ │ ├── keys.js │ │ │ │ ├── last-index-of.js │ │ │ │ ├── map.js │ │ │ │ ├── methods.js │ │ │ │ ├── of.js │ │ │ │ ├── reduce-right.js │ │ │ │ ├── reduce.js │ │ │ │ ├── reverse.js │ │ │ │ ├── set-from-base64.js │ │ │ │ ├── set-from-hex.js │ │ │ │ ├── set.js │ │ │ │ ├── slice.js │ │ │ │ ├── some.js │ │ │ │ ├── sort.js │ │ │ │ ├── subarray.js │ │ │ │ ├── to-base64.js │ │ │ │ ├── to-hex.js │ │ │ │ ├── to-locale-string.js │ │ │ │ ├── to-reversed.js │ │ │ │ ├── to-sorted.js │ │ │ │ ├── to-spliced.js │ │ │ │ ├── to-string.js │ │ │ │ ├── uint16-array.js │ │ │ │ ├── uint32-array.js │ │ │ │ ├── uint8-array.js │ │ │ │ ├── uint8-clamped-array.js │ │ │ │ ├── values.js │ │ │ │ └── with.js │ │ │ ├── unescape.js │ │ │ ├── url/ │ │ │ │ ├── can-parse.js │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ └── to-json.js │ │ │ ├── url-search-params/ │ │ │ │ └── index.js │ │ │ ├── weak-map/ │ │ │ │ ├── get-or-insert-computed.js │ │ │ │ ├── get-or-insert.js │ │ │ │ └── index.js │ │ │ └── weak-set/ │ │ │ └── index.js │ │ ├── configurator.js │ │ ├── es/ │ │ │ ├── README.md │ │ │ ├── aggregate-error.js │ │ │ ├── array/ │ │ │ │ ├── at.js │ │ │ │ ├── concat.js │ │ │ │ ├── copy-within.js │ │ │ │ ├── entries.js │ │ │ │ ├── every.js │ │ │ │ ├── fill.js │ │ │ │ ├── filter.js │ │ │ │ ├── find-index.js │ │ │ │ ├── find-last-index.js │ │ │ │ ├── find-last.js │ │ │ │ ├── find.js │ │ │ │ ├── flat-map.js │ │ │ │ ├── flat.js │ │ │ │ ├── for-each.js │ │ │ │ ├── from-async.js │ │ │ │ ├── from.js │ │ │ │ ├── includes.js │ │ │ │ ├── index-of.js │ │ │ │ ├── index.js │ │ │ │ ├── is-array.js │ │ │ │ ├── iterator.js │ │ │ │ ├── join.js │ │ │ │ ├── keys.js │ │ │ │ ├── last-index-of.js │ │ │ │ ├── map.js │ │ │ │ ├── of.js │ │ │ │ ├── push.js │ │ │ │ ├── reduce-right.js │ │ │ │ ├── reduce.js │ │ │ │ ├── reverse.js │ │ │ │ ├── slice.js │ │ │ │ ├── some.js │ │ │ │ ├── sort.js │ │ │ │ ├── splice.js │ │ │ │ ├── to-reversed.js │ │ │ │ ├── to-sorted.js │ │ │ │ ├── to-spliced.js │ │ │ │ ├── unshift.js │ │ │ │ ├── values.js │ │ │ │ ├── virtual/ │ │ │ │ │ ├── at.js │ │ │ │ │ ├── concat.js │ │ │ │ │ ├── copy-within.js │ │ │ │ │ ├── entries.js │ │ │ │ │ ├── every.js │ │ │ │ │ ├── fill.js │ │ │ │ │ ├── filter.js │ │ │ │ │ ├── find-index.js │ │ │ │ │ ├── find-last-index.js │ │ │ │ │ ├── find-last.js │ │ │ │ │ ├── find.js │ │ │ │ │ ├── flat-map.js │ │ │ │ │ ├── flat.js │ │ │ │ │ ├── for-each.js │ │ │ │ │ ├── includes.js │ │ │ │ │ ├── index-of.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── iterator.js │ │ │ │ │ ├── join.js │ │ │ │ │ ├── keys.js │ │ │ │ │ ├── last-index-of.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── push.js │ │ │ │ │ ├── reduce-right.js │ │ │ │ │ ├── reduce.js │ │ │ │ │ ├── reverse.js │ │ │ │ │ ├── slice.js │ │ │ │ │ ├── some.js │ │ │ │ │ ├── sort.js │ │ │ │ │ ├── splice.js │ │ │ │ │ ├── to-reversed.js │ │ │ │ │ ├── to-sorted.js │ │ │ │ │ ├── to-spliced.js │ │ │ │ │ ├── unshift.js │ │ │ │ │ ├── values.js │ │ │ │ │ └── with.js │ │ │ │ └── with.js │ │ │ ├── array-buffer/ │ │ │ │ ├── constructor.js │ │ │ │ ├── detached.js │ │ │ │ ├── index.js │ │ │ │ ├── is-view.js │ │ │ │ ├── slice.js │ │ │ │ ├── transfer-to-fixed-length.js │ │ │ │ └── transfer.js │ │ │ ├── async-disposable-stack/ │ │ │ │ ├── constructor.js │ │ │ │ └── index.js │ │ │ ├── async-iterator/ │ │ │ │ ├── async-dispose.js │ │ │ │ └── index.js │ │ │ ├── data-view/ │ │ │ │ ├── get-float16.js │ │ │ │ ├── index.js │ │ │ │ └── set-float16.js │ │ │ ├── date/ │ │ │ │ ├── get-year.js │ │ │ │ ├── index.js │ │ │ │ ├── now.js │ │ │ │ ├── set-year.js │ │ │ │ ├── to-gmt-string.js │ │ │ │ ├── to-iso-string.js │ │ │ │ ├── to-json.js │ │ │ │ ├── to-primitive.js │ │ │ │ └── to-string.js │ │ │ ├── disposable-stack/ │ │ │ │ ├── constructor.js │ │ │ │ └── index.js │ │ │ ├── error/ │ │ │ │ ├── constructor.js │ │ │ │ ├── index.js │ │ │ │ ├── is-error.js │ │ │ │ └── to-string.js │ │ │ ├── escape.js │ │ │ ├── function/ │ │ │ │ ├── bind.js │ │ │ │ ├── has-instance.js │ │ │ │ ├── index.js │ │ │ │ ├── name.js │ │ │ │ └── virtual/ │ │ │ │ ├── bind.js │ │ │ │ └── index.js │ │ │ ├── get-iterator-method.js │ │ │ ├── get-iterator.js │ │ │ ├── global-this.js │ │ │ ├── instance/ │ │ │ │ ├── at.js │ │ │ │ ├── bind.js │ │ │ │ ├── code-point-at.js │ │ │ │ ├── concat.js │ │ │ │ ├── copy-within.js │ │ │ │ ├── ends-with.js │ │ │ │ ├── entries.js │ │ │ │ ├── every.js │ │ │ │ ├── fill.js │ │ │ │ ├── filter.js │ │ │ │ ├── find-index.js │ │ │ │ ├── find-last-index.js │ │ │ │ ├── find-last.js │ │ │ │ ├── find.js │ │ │ │ ├── flags.js │ │ │ │ ├── flat-map.js │ │ │ │ ├── flat.js │ │ │ │ ├── for-each.js │ │ │ │ ├── includes.js │ │ │ │ ├── index-of.js │ │ │ │ ├── is-well-formed.js │ │ │ │ ├── keys.js │ │ │ │ ├── last-index-of.js │ │ │ │ ├── map.js │ │ │ │ ├── match-all.js │ │ │ │ ├── pad-end.js │ │ │ │ ├── pad-start.js │ │ │ │ ├── push.js │ │ │ │ ├── reduce-right.js │ │ │ │ ├── reduce.js │ │ │ │ ├── repeat.js │ │ │ │ ├── replace-all.js │ │ │ │ ├── reverse.js │ │ │ │ ├── slice.js │ │ │ │ ├── some.js │ │ │ │ ├── sort.js │ │ │ │ ├── splice.js │ │ │ │ ├── starts-with.js │ │ │ │ ├── to-reversed.js │ │ │ │ ├── to-sorted.js │ │ │ │ ├── to-spliced.js │ │ │ │ ├── to-well-formed.js │ │ │ │ ├── trim-end.js │ │ │ │ ├── trim-left.js │ │ │ │ ├── trim-right.js │ │ │ │ ├── trim-start.js │ │ │ │ ├── trim.js │ │ │ │ ├── unshift.js │ │ │ │ ├── values.js │ │ │ │ └── with.js │ │ │ ├── is-iterable.js │ │ │ ├── iterator/ │ │ │ │ ├── concat.js │ │ │ │ ├── dispose.js │ │ │ │ ├── drop.js │ │ │ │ ├── every.js │ │ │ │ ├── filter.js │ │ │ │ ├── find.js │ │ │ │ ├── flat-map.js │ │ │ │ ├── for-each.js │ │ │ │ ├── from.js │ │ │ │ ├── index.js │ │ │ │ ├── map.js │ │ │ │ ├── reduce.js │ │ │ │ ├── some.js │ │ │ │ ├── take.js │ │ │ │ └── to-array.js │ │ │ ├── json/ │ │ │ │ ├── index.js │ │ │ │ ├── is-raw-json.js │ │ │ │ ├── parse.js │ │ │ │ ├── raw-json.js │ │ │ │ ├── stringify.js │ │ │ │ └── to-string-tag.js │ │ │ ├── map/ │ │ │ │ ├── get-or-insert-computed.js │ │ │ │ ├── get-or-insert.js │ │ │ │ ├── group-by.js │ │ │ │ └── index.js │ │ │ ├── math/ │ │ │ │ ├── acosh.js │ │ │ │ ├── asinh.js │ │ │ │ ├── atanh.js │ │ │ │ ├── cbrt.js │ │ │ │ ├── clz32.js │ │ │ │ ├── cosh.js │ │ │ │ ├── expm1.js │ │ │ │ ├── f16round.js │ │ │ │ ├── fround.js │ │ │ │ ├── hypot.js │ │ │ │ ├── imul.js │ │ │ │ ├── index.js │ │ │ │ ├── log10.js │ │ │ │ ├── log1p.js │ │ │ │ ├── log2.js │ │ │ │ ├── sign.js │ │ │ │ ├── sinh.js │ │ │ │ ├── sum-precise.js │ │ │ │ ├── tanh.js │ │ │ │ ├── to-string-tag.js │ │ │ │ └── trunc.js │ │ │ ├── number/ │ │ │ │ ├── constructor.js │ │ │ │ ├── epsilon.js │ │ │ │ ├── index.js │ │ │ │ ├── is-finite.js │ │ │ │ ├── is-integer.js │ │ │ │ ├── is-nan.js │ │ │ │ ├── is-safe-integer.js │ │ │ │ ├── max-safe-integer.js │ │ │ │ ├── min-safe-integer.js │ │ │ │ ├── parse-float.js │ │ │ │ ├── parse-int.js │ │ │ │ ├── to-exponential.js │ │ │ │ ├── to-fixed.js │ │ │ │ ├── to-precision.js │ │ │ │ └── virtual/ │ │ │ │ ├── index.js │ │ │ │ ├── to-exponential.js │ │ │ │ ├── to-fixed.js │ │ │ │ └── to-precision.js │ │ │ ├── object/ │ │ │ │ ├── assign.js │ │ │ │ ├── create.js │ │ │ │ ├── define-getter.js │ │ │ │ ├── define-properties.js │ │ │ │ ├── define-property.js │ │ │ │ ├── define-setter.js │ │ │ │ ├── entries.js │ │ │ │ ├── freeze.js │ │ │ │ ├── from-entries.js │ │ │ │ ├── get-own-property-descriptor.js │ │ │ │ ├── get-own-property-descriptors.js │ │ │ │ ├── get-own-property-names.js │ │ │ │ ├── get-own-property-symbols.js │ │ │ │ ├── get-prototype-of.js │ │ │ │ ├── group-by.js │ │ │ │ ├── has-own.js │ │ │ │ ├── index.js │ │ │ │ ├── is-extensible.js │ │ │ │ ├── is-frozen.js │ │ │ │ ├── is-sealed.js │ │ │ │ ├── is.js │ │ │ │ ├── keys.js │ │ │ │ ├── lookup-getter.js │ │ │ │ ├── lookup-setter.js │ │ │ │ ├── prevent-extensions.js │ │ │ │ ├── proto.js │ │ │ │ ├── seal.js │ │ │ │ ├── set-prototype-of.js │ │ │ │ ├── to-string.js │ │ │ │ └── values.js │ │ │ ├── parse-float.js │ │ │ ├── parse-int.js │ │ │ ├── promise/ │ │ │ │ ├── all-settled.js │ │ │ │ ├── any.js │ │ │ │ ├── finally.js │ │ │ │ ├── index.js │ │ │ │ ├── try.js │ │ │ │ └── with-resolvers.js │ │ │ ├── reflect/ │ │ │ │ ├── apply.js │ │ │ │ ├── construct.js │ │ │ │ ├── define-property.js │ │ │ │ ├── delete-property.js │ │ │ │ ├── get-own-property-descriptor.js │ │ │ │ ├── get-prototype-of.js │ │ │ │ ├── get.js │ │ │ │ ├── has.js │ │ │ │ ├── index.js │ │ │ │ ├── is-extensible.js │ │ │ │ ├── own-keys.js │ │ │ │ ├── prevent-extensions.js │ │ │ │ ├── set-prototype-of.js │ │ │ │ ├── set.js │ │ │ │ └── to-string-tag.js │ │ │ ├── regexp/ │ │ │ │ ├── constructor.js │ │ │ │ ├── dot-all.js │ │ │ │ ├── escape.js │ │ │ │ ├── flags.js │ │ │ │ ├── index.js │ │ │ │ ├── match.js │ │ │ │ ├── replace.js │ │ │ │ ├── search.js │ │ │ │ ├── split.js │ │ │ │ ├── sticky.js │ │ │ │ ├── test.js │ │ │ │ └── to-string.js │ │ │ ├── set/ │ │ │ │ ├── difference.js │ │ │ │ ├── index.js │ │ │ │ ├── intersection.js │ │ │ │ ├── is-disjoint-from.js │ │ │ │ ├── is-subset-of.js │ │ │ │ ├── is-superset-of.js │ │ │ │ ├── symmetric-difference.js │ │ │ │ └── union.js │ │ │ ├── string/ │ │ │ │ ├── anchor.js │ │ │ │ ├── at.js │ │ │ │ ├── big.js │ │ │ │ ├── blink.js │ │ │ │ ├── bold.js │ │ │ │ ├── code-point-at.js │ │ │ │ ├── ends-with.js │ │ │ │ ├── fixed.js │ │ │ │ ├── fontcolor.js │ │ │ │ ├── fontsize.js │ │ │ │ ├── from-code-point.js │ │ │ │ ├── includes.js │ │ │ │ ├── index.js │ │ │ │ ├── is-well-formed.js │ │ │ │ ├── italics.js │ │ │ │ ├── iterator.js │ │ │ │ ├── link.js │ │ │ │ ├── match-all.js │ │ │ │ ├── match.js │ │ │ │ ├── pad-end.js │ │ │ │ ├── pad-start.js │ │ │ │ ├── raw.js │ │ │ │ ├── repeat.js │ │ │ │ ├── replace-all.js │ │ │ │ ├── replace.js │ │ │ │ ├── search.js │ │ │ │ ├── small.js │ │ │ │ ├── split.js │ │ │ │ ├── starts-with.js │ │ │ │ ├── strike.js │ │ │ │ ├── sub.js │ │ │ │ ├── substr.js │ │ │ │ ├── sup.js │ │ │ │ ├── to-well-formed.js │ │ │ │ ├── trim-end.js │ │ │ │ ├── trim-left.js │ │ │ │ ├── trim-right.js │ │ │ │ ├── trim-start.js │ │ │ │ ├── trim.js │ │ │ │ └── virtual/ │ │ │ │ ├── anchor.js │ │ │ │ ├── at.js │ │ │ │ ├── big.js │ │ │ │ ├── blink.js │ │ │ │ ├── bold.js │ │ │ │ ├── code-point-at.js │ │ │ │ ├── ends-with.js │ │ │ │ ├── fixed.js │ │ │ │ ├── fontcolor.js │ │ │ │ ├── fontsize.js │ │ │ │ ├── includes.js │ │ │ │ ├── index.js │ │ │ │ ├── is-well-formed.js │ │ │ │ ├── italics.js │ │ │ │ ├── iterator.js │ │ │ │ ├── link.js │ │ │ │ ├── match-all.js │ │ │ │ ├── pad-end.js │ │ │ │ ├── pad-start.js │ │ │ │ ├── repeat.js │ │ │ │ ├── replace-all.js │ │ │ │ ├── small.js │ │ │ │ ├── starts-with.js │ │ │ │ ├── strike.js │ │ │ │ ├── sub.js │ │ │ │ ├── substr.js │ │ │ │ ├── sup.js │ │ │ │ ├── to-well-formed.js │ │ │ │ ├── trim-end.js │ │ │ │ ├── trim-left.js │ │ │ │ ├── trim-right.js │ │ │ │ ├── trim-start.js │ │ │ │ └── trim.js │ │ │ ├── suppressed-error.js │ │ │ ├── symbol/ │ │ │ │ ├── async-dispose.js │ │ │ │ ├── async-iterator.js │ │ │ │ ├── description.js │ │ │ │ ├── dispose.js │ │ │ │ ├── for.js │ │ │ │ ├── has-instance.js │ │ │ │ ├── index.js │ │ │ │ ├── is-concat-spreadable.js │ │ │ │ ├── iterator.js │ │ │ │ ├── key-for.js │ │ │ │ ├── match-all.js │ │ │ │ ├── match.js │ │ │ │ ├── replace.js │ │ │ │ ├── search.js │ │ │ │ ├── species.js │ │ │ │ ├── split.js │ │ │ │ ├── to-primitive.js │ │ │ │ ├── to-string-tag.js │ │ │ │ └── unscopables.js │ │ │ ├── typed-array/ │ │ │ │ ├── at.js │ │ │ │ ├── copy-within.js │ │ │ │ ├── entries.js │ │ │ │ ├── every.js │ │ │ │ ├── fill.js │ │ │ │ ├── filter.js │ │ │ │ ├── find-index.js │ │ │ │ ├── find-last-index.js │ │ │ │ ├── find-last.js │ │ │ │ ├── find.js │ │ │ │ ├── float32-array.js │ │ │ │ ├── float64-array.js │ │ │ │ ├── for-each.js │ │ │ │ ├── from-base64.js │ │ │ │ ├── from-hex.js │ │ │ │ ├── from.js │ │ │ │ ├── includes.js │ │ │ │ ├── index-of.js │ │ │ │ ├── index.js │ │ │ │ ├── int16-array.js │ │ │ │ ├── int32-array.js │ │ │ │ ├── int8-array.js │ │ │ │ ├── iterator.js │ │ │ │ ├── join.js │ │ │ │ ├── keys.js │ │ │ │ ├── last-index-of.js │ │ │ │ ├── map.js │ │ │ │ ├── methods.js │ │ │ │ ├── of.js │ │ │ │ ├── reduce-right.js │ │ │ │ ├── reduce.js │ │ │ │ ├── reverse.js │ │ │ │ ├── set-from-base64.js │ │ │ │ ├── set-from-hex.js │ │ │ │ ├── set.js │ │ │ │ ├── slice.js │ │ │ │ ├── some.js │ │ │ │ ├── sort.js │ │ │ │ ├── subarray.js │ │ │ │ ├── to-base64.js │ │ │ │ ├── to-hex.js │ │ │ │ ├── to-locale-string.js │ │ │ │ ├── to-reversed.js │ │ │ │ ├── to-sorted.js │ │ │ │ ├── to-string.js │ │ │ │ ├── uint16-array.js │ │ │ │ ├── uint32-array.js │ │ │ │ ├── uint8-array.js │ │ │ │ ├── uint8-clamped-array.js │ │ │ │ ├── values.js │ │ │ │ └── with.js │ │ │ ├── unescape.js │ │ │ ├── weak-map/ │ │ │ │ ├── get-or-insert-computed.js │ │ │ │ ├── get-or-insert.js │ │ │ │ └── index.js │ │ │ └── weak-set/ │ │ │ └── index.js │ │ ├── full/ │ │ │ ├── README.md │ │ │ ├── aggregate-error.js │ │ │ ├── array/ │ │ │ │ ├── at.js │ │ │ │ ├── concat.js │ │ │ │ ├── copy-within.js │ │ │ │ ├── entries.js │ │ │ │ ├── every.js │ │ │ │ ├── fill.js │ │ │ │ ├── filter-out.js │ │ │ │ ├── filter-reject.js │ │ │ │ ├── filter.js │ │ │ │ ├── find-index.js │ │ │ │ ├── find-last-index.js │ │ │ │ ├── find-last.js │ │ │ │ ├── find.js │ │ │ │ ├── flat-map.js │ │ │ │ ├── flat.js │ │ │ │ ├── for-each.js │ │ │ │ ├── from-async.js │ │ │ │ ├── from.js │ │ │ │ ├── group-by-to-map.js │ │ │ │ ├── group-by.js │ │ │ │ ├── group-to-map.js │ │ │ │ ├── group.js │ │ │ │ ├── includes.js │ │ │ │ ├── index-of.js │ │ │ │ ├── index.js │ │ │ │ ├── is-array.js │ │ │ │ ├── is-template-object.js │ │ │ │ ├── iterator.js │ │ │ │ ├── join.js │ │ │ │ ├── keys.js │ │ │ │ ├── last-index-of.js │ │ │ │ ├── last-index.js │ │ │ │ ├── last-item.js │ │ │ │ ├── map.js │ │ │ │ ├── of.js │ │ │ │ ├── push.js │ │ │ │ ├── reduce-right.js │ │ │ │ ├── reduce.js │ │ │ │ ├── reverse.js │ │ │ │ ├── slice.js │ │ │ │ ├── some.js │ │ │ │ ├── sort.js │ │ │ │ ├── splice.js │ │ │ │ ├── to-reversed.js │ │ │ │ ├── to-sorted.js │ │ │ │ ├── to-spliced.js │ │ │ │ ├── unique-by.js │ │ │ │ ├── unshift.js │ │ │ │ ├── values.js │ │ │ │ ├── virtual/ │ │ │ │ │ ├── at.js │ │ │ │ │ ├── concat.js │ │ │ │ │ ├── copy-within.js │ │ │ │ │ ├── entries.js │ │ │ │ │ ├── every.js │ │ │ │ │ ├── fill.js │ │ │ │ │ ├── filter-out.js │ │ │ │ │ ├── filter-reject.js │ │ │ │ │ ├── filter.js │ │ │ │ │ ├── find-index.js │ │ │ │ │ ├── find-last-index.js │ │ │ │ │ ├── find-last.js │ │ │ │ │ ├── find.js │ │ │ │ │ ├── flat-map.js │ │ │ │ │ ├── flat.js │ │ │ │ │ ├── for-each.js │ │ │ │ │ ├── group-by-to-map.js │ │ │ │ │ ├── group-by.js │ │ │ │ │ ├── group-to-map.js │ │ │ │ │ ├── group.js │ │ │ │ │ ├── includes.js │ │ │ │ │ ├── index-of.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── iterator.js │ │ │ │ │ ├── join.js │ │ │ │ │ ├── keys.js │ │ │ │ │ ├── last-index-of.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── push.js │ │ │ │ │ ├── reduce-right.js │ │ │ │ │ ├── reduce.js │ │ │ │ │ ├── reverse.js │ │ │ │ │ ├── slice.js │ │ │ │ │ ├── some.js │ │ │ │ │ ├── sort.js │ │ │ │ │ ├── splice.js │ │ │ │ │ ├── to-reversed.js │ │ │ │ │ ├── to-sorted.js │ │ │ │ │ ├── to-spliced.js │ │ │ │ │ ├── unique-by.js │ │ │ │ │ ├── unshift.js │ │ │ │ │ ├── values.js │ │ │ │ │ └── with.js │ │ │ │ └── with.js │ │ │ ├── array-buffer/ │ │ │ │ ├── constructor.js │ │ │ │ ├── detached.js │ │ │ │ ├── index.js │ │ │ │ ├── is-view.js │ │ │ │ ├── slice.js │ │ │ │ ├── transfer-to-fixed-length.js │ │ │ │ └── transfer.js │ │ │ ├── async-disposable-stack/ │ │ │ │ ├── constructor.js │ │ │ │ └── index.js │ │ │ ├── async-iterator/ │ │ │ │ ├── as-indexed-pairs.js │ │ │ │ ├── async-dispose.js │ │ │ │ ├── drop.js │ │ │ │ ├── every.js │ │ │ │ ├── filter.js │ │ │ │ ├── find.js │ │ │ │ ├── flat-map.js │ │ │ │ ├── for-each.js │ │ │ │ ├── from.js │ │ │ │ ├── index.js │ │ │ │ ├── indexed.js │ │ │ │ ├── map.js │ │ │ │ ├── reduce.js │ │ │ │ ├── some.js │ │ │ │ ├── take.js │ │ │ │ └── to-array.js │ │ │ ├── atob.js │ │ │ ├── bigint/ │ │ │ │ ├── index.js │ │ │ │ └── range.js │ │ │ ├── btoa.js │ │ │ ├── clear-immediate.js │ │ │ ├── composite-key.js │ │ │ ├── composite-symbol.js │ │ │ ├── data-view/ │ │ │ │ ├── get-float16.js │ │ │ │ ├── get-uint8-clamped.js │ │ │ │ ├── index.js │ │ │ │ ├── set-float16.js │ │ │ │ └── set-uint8-clamped.js │ │ │ ├── date/ │ │ │ │ ├── get-year.js │ │ │ │ ├── index.js │ │ │ │ ├── now.js │ │ │ │ ├── set-year.js │ │ │ │ ├── to-gmt-string.js │ │ │ │ ├── to-iso-string.js │ │ │ │ ├── to-json.js │ │ │ │ ├── to-primitive.js │ │ │ │ └── to-string.js │ │ │ ├── disposable-stack/ │ │ │ │ ├── constructor.js │ │ │ │ └── index.js │ │ │ ├── dom-collections/ │ │ │ │ ├── for-each.js │ │ │ │ ├── index.js │ │ │ │ └── iterator.js │ │ │ ├── dom-exception/ │ │ │ │ ├── constructor.js │ │ │ │ ├── index.js │ │ │ │ └── to-string-tag.js │ │ │ ├── error/ │ │ │ │ ├── constructor.js │ │ │ │ ├── index.js │ │ │ │ ├── is-error.js │ │ │ │ └── to-string.js │ │ │ ├── escape.js │ │ │ ├── function/ │ │ │ │ ├── bind.js │ │ │ │ ├── demethodize.js │ │ │ │ ├── has-instance.js │ │ │ │ ├── index.js │ │ │ │ ├── is-callable.js │ │ │ │ ├── is-constructor.js │ │ │ │ ├── metadata.js │ │ │ │ ├── name.js │ │ │ │ ├── un-this.js │ │ │ │ └── virtual/ │ │ │ │ ├── bind.js │ │ │ │ ├── demethodize.js │ │ │ │ ├── index.js │ │ │ │ └── un-this.js │ │ │ ├── get-iterator-method.js │ │ │ ├── get-iterator.js │ │ │ ├── global-this.js │ │ │ ├── instance/ │ │ │ │ ├── at.js │ │ │ │ ├── bind.js │ │ │ │ ├── clamp.js │ │ │ │ ├── code-point-at.js │ │ │ │ ├── code-points.js │ │ │ │ ├── concat.js │ │ │ │ ├── copy-within.js │ │ │ │ ├── demethodize.js │ │ │ │ ├── ends-with.js │ │ │ │ ├── entries.js │ │ │ │ ├── every.js │ │ │ │ ├── fill.js │ │ │ │ ├── filter-out.js │ │ │ │ ├── filter-reject.js │ │ │ │ ├── filter.js │ │ │ │ ├── find-index.js │ │ │ │ ├── find-last-index.js │ │ │ │ ├── find-last.js │ │ │ │ ├── find.js │ │ │ │ ├── flags.js │ │ │ │ ├── flat-map.js │ │ │ │ ├── flat.js │ │ │ │ ├── for-each.js │ │ │ │ ├── group-by-to-map.js │ │ │ │ ├── group-by.js │ │ │ │ ├── group-to-map.js │ │ │ │ ├── group.js │ │ │ │ ├── includes.js │ │ │ │ ├── index-of.js │ │ │ │ ├── is-well-formed.js │ │ │ │ ├── keys.js │ │ │ │ ├── last-index-of.js │ │ │ │ ├── map.js │ │ │ │ ├── match-all.js │ │ │ │ ├── pad-end.js │ │ │ │ ├── pad-start.js │ │ │ │ ├── push.js │ │ │ │ ├── reduce-right.js │ │ │ │ ├── reduce.js │ │ │ │ ├── repeat.js │ │ │ │ ├── replace-all.js │ │ │ │ ├── reverse.js │ │ │ │ ├── slice.js │ │ │ │ ├── some.js │ │ │ │ ├── sort.js │ │ │ │ ├── splice.js │ │ │ │ ├── starts-with.js │ │ │ │ ├── to-reversed.js │ │ │ │ ├── to-sorted.js │ │ │ │ ├── to-spliced.js │ │ │ │ ├── to-well-formed.js │ │ │ │ ├── trim-end.js │ │ │ │ ├── trim-left.js │ │ │ │ ├── trim-right.js │ │ │ │ ├── trim-start.js │ │ │ │ ├── trim.js │ │ │ │ ├── un-this.js │ │ │ │ ├── unique-by.js │ │ │ │ ├── unshift.js │ │ │ │ ├── values.js │ │ │ │ └── with.js │ │ │ ├── is-iterable.js │ │ │ ├── iterator/ │ │ │ │ ├── as-indexed-pairs.js │ │ │ │ ├── chunks.js │ │ │ │ ├── concat.js │ │ │ │ ├── dispose.js │ │ │ │ ├── drop.js │ │ │ │ ├── every.js │ │ │ │ ├── filter.js │ │ │ │ ├── find.js │ │ │ │ ├── flat-map.js │ │ │ │ ├── for-each.js │ │ │ │ ├── from.js │ │ │ │ ├── index.js │ │ │ │ ├── indexed.js │ │ │ │ ├── map.js │ │ │ │ ├── range.js │ │ │ │ ├── reduce.js │ │ │ │ ├── sliding.js │ │ │ │ ├── some.js │ │ │ │ ├── take.js │ │ │ │ ├── to-array.js │ │ │ │ ├── to-async.js │ │ │ │ ├── windows.js │ │ │ │ ├── zip-keyed.js │ │ │ │ └── zip.js │ │ │ ├── json/ │ │ │ │ ├── index.js │ │ │ │ ├── is-raw-json.js │ │ │ │ ├── parse.js │ │ │ │ ├── raw-json.js │ │ │ │ ├── stringify.js │ │ │ │ └── to-string-tag.js │ │ │ ├── map/ │ │ │ │ ├── delete-all.js │ │ │ │ ├── emplace.js │ │ │ │ ├── every.js │ │ │ │ ├── filter.js │ │ │ │ ├── find-key.js │ │ │ │ ├── find.js │ │ │ │ ├── from.js │ │ │ │ ├── get-or-insert-computed.js │ │ │ │ ├── get-or-insert.js │ │ │ │ ├── group-by.js │ │ │ │ ├── includes.js │ │ │ │ ├── index.js │ │ │ │ ├── key-by.js │ │ │ │ ├── key-of.js │ │ │ │ ├── map-keys.js │ │ │ │ ├── map-values.js │ │ │ │ ├── merge.js │ │ │ │ ├── of.js │ │ │ │ ├── reduce.js │ │ │ │ ├── some.js │ │ │ │ ├── update-or-insert.js │ │ │ │ ├── update.js │ │ │ │ └── upsert.js │ │ │ ├── math/ │ │ │ │ ├── acosh.js │ │ │ │ ├── asinh.js │ │ │ │ ├── atanh.js │ │ │ │ ├── cbrt.js │ │ │ │ ├── clamp.js │ │ │ │ ├── clz32.js │ │ │ │ ├── cosh.js │ │ │ │ ├── deg-per-rad.js │ │ │ │ ├── degrees.js │ │ │ │ ├── expm1.js │ │ │ │ ├── f16round.js │ │ │ │ ├── fround.js │ │ │ │ ├── fscale.js │ │ │ │ ├── hypot.js │ │ │ │ ├── iaddh.js │ │ │ │ ├── imul.js │ │ │ │ ├── imulh.js │ │ │ │ ├── index.js │ │ │ │ ├── isubh.js │ │ │ │ ├── log10.js │ │ │ │ ├── log1p.js │ │ │ │ ├── log2.js │ │ │ │ ├── rad-per-deg.js │ │ │ │ ├── radians.js │ │ │ │ ├── scale.js │ │ │ │ ├── seeded-prng.js │ │ │ │ ├── sign.js │ │ │ │ ├── signbit.js │ │ │ │ ├── sinh.js │ │ │ │ ├── sum-precise.js │ │ │ │ ├── tanh.js │ │ │ │ ├── to-string-tag.js │ │ │ │ ├── trunc.js │ │ │ │ └── umulh.js │ │ │ ├── number/ │ │ │ │ ├── clamp.js │ │ │ │ ├── constructor.js │ │ │ │ ├── epsilon.js │ │ │ │ ├── from-string.js │ │ │ │ ├── index.js │ │ │ │ ├── is-finite.js │ │ │ │ ├── is-integer.js │ │ │ │ ├── is-nan.js │ │ │ │ ├── is-safe-integer.js │ │ │ │ ├── max-safe-integer.js │ │ │ │ ├── min-safe-integer.js │ │ │ │ ├── parse-float.js │ │ │ │ ├── parse-int.js │ │ │ │ ├── range.js │ │ │ │ ├── to-exponential.js │ │ │ │ ├── to-fixed.js │ │ │ │ ├── to-precision.js │ │ │ │ └── virtual/ │ │ │ │ ├── clamp.js │ │ │ │ ├── index.js │ │ │ │ ├── to-exponential.js │ │ │ │ ├── to-fixed.js │ │ │ │ └── to-precision.js │ │ │ ├── object/ │ │ │ │ ├── assign.js │ │ │ │ ├── create.js │ │ │ │ ├── define-getter.js │ │ │ │ ├── define-properties.js │ │ │ │ ├── define-property.js │ │ │ │ ├── define-setter.js │ │ │ │ ├── entries.js │ │ │ │ ├── freeze.js │ │ │ │ ├── from-entries.js │ │ │ │ ├── get-own-property-descriptor.js │ │ │ │ ├── get-own-property-descriptors.js │ │ │ │ ├── get-own-property-names.js │ │ │ │ ├── get-own-property-symbols.js │ │ │ │ ├── get-prototype-of.js │ │ │ │ ├── group-by.js │ │ │ │ ├── has-own.js │ │ │ │ ├── index.js │ │ │ │ ├── is-extensible.js │ │ │ │ ├── is-frozen.js │ │ │ │ ├── is-sealed.js │ │ │ │ ├── is.js │ │ │ │ ├── iterate-entries.js │ │ │ │ ├── iterate-keys.js │ │ │ │ ├── iterate-values.js │ │ │ │ ├── keys.js │ │ │ │ ├── lookup-getter.js │ │ │ │ ├── lookup-setter.js │ │ │ │ ├── prevent-extensions.js │ │ │ │ ├── proto.js │ │ │ │ ├── seal.js │ │ │ │ ├── set-prototype-of.js │ │ │ │ ├── to-string.js │ │ │ │ └── values.js │ │ │ ├── observable/ │ │ │ │ └── index.js │ │ │ ├── parse-float.js │ │ │ ├── parse-int.js │ │ │ ├── promise/ │ │ │ │ ├── all-settled.js │ │ │ │ ├── any.js │ │ │ │ ├── finally.js │ │ │ │ ├── index.js │ │ │ │ ├── try.js │ │ │ │ └── with-resolvers.js │ │ │ ├── queue-microtask.js │ │ │ ├── reflect/ │ │ │ │ ├── apply.js │ │ │ │ ├── construct.js │ │ │ │ ├── define-metadata.js │ │ │ │ ├── define-property.js │ │ │ │ ├── delete-metadata.js │ │ │ │ ├── delete-property.js │ │ │ │ ├── get-metadata-keys.js │ │ │ │ ├── get-metadata.js │ │ │ │ ├── get-own-metadata-keys.js │ │ │ │ ├── get-own-metadata.js │ │ │ │ ├── get-own-property-descriptor.js │ │ │ │ ├── get-prototype-of.js │ │ │ │ ├── get.js │ │ │ │ ├── has-metadata.js │ │ │ │ ├── has-own-metadata.js │ │ │ │ ├── has.js │ │ │ │ ├── index.js │ │ │ │ ├── is-extensible.js │ │ │ │ ├── metadata.js │ │ │ │ ├── own-keys.js │ │ │ │ ├── prevent-extensions.js │ │ │ │ ├── set-prototype-of.js │ │ │ │ ├── set.js │ │ │ │ └── to-string-tag.js │ │ │ ├── regexp/ │ │ │ │ ├── constructor.js │ │ │ │ ├── dot-all.js │ │ │ │ ├── escape.js │ │ │ │ ├── flags.js │ │ │ │ ├── index.js │ │ │ │ ├── match.js │ │ │ │ ├── replace.js │ │ │ │ ├── search.js │ │ │ │ ├── split.js │ │ │ │ ├── sticky.js │ │ │ │ ├── test.js │ │ │ │ └── to-string.js │ │ │ ├── self.js │ │ │ ├── set/ │ │ │ │ ├── add-all.js │ │ │ │ ├── delete-all.js │ │ │ │ ├── difference.js │ │ │ │ ├── every.js │ │ │ │ ├── filter.js │ │ │ │ ├── find.js │ │ │ │ ├── from.js │ │ │ │ ├── index.js │ │ │ │ ├── intersection.js │ │ │ │ ├── is-disjoint-from.js │ │ │ │ ├── is-subset-of.js │ │ │ │ ├── is-superset-of.js │ │ │ │ ├── join.js │ │ │ │ ├── map.js │ │ │ │ ├── of.js │ │ │ │ ├── reduce.js │ │ │ │ ├── some.js │ │ │ │ ├── symmetric-difference.js │ │ │ │ └── union.js │ │ │ ├── set-immediate.js │ │ │ ├── set-interval.js │ │ │ ├── set-timeout.js │ │ │ ├── string/ │ │ │ │ ├── anchor.js │ │ │ │ ├── at.js │ │ │ │ ├── big.js │ │ │ │ ├── blink.js │ │ │ │ ├── bold.js │ │ │ │ ├── code-point-at.js │ │ │ │ ├── code-points.js │ │ │ │ ├── cooked.js │ │ │ │ ├── dedent.js │ │ │ │ ├── ends-with.js │ │ │ │ ├── fixed.js │ │ │ │ ├── fontcolor.js │ │ │ │ ├── fontsize.js │ │ │ │ ├── from-code-point.js │ │ │ │ ├── includes.js │ │ │ │ ├── index.js │ │ │ │ ├── is-well-formed.js │ │ │ │ ├── italics.js │ │ │ │ ├── iterator.js │ │ │ │ ├── link.js │ │ │ │ ├── match-all.js │ │ │ │ ├── match.js │ │ │ │ ├── pad-end.js │ │ │ │ ├── pad-start.js │ │ │ │ ├── raw.js │ │ │ │ ├── repeat.js │ │ │ │ ├── replace-all.js │ │ │ │ ├── replace.js │ │ │ │ ├── search.js │ │ │ │ ├── small.js │ │ │ │ ├── split.js │ │ │ │ ├── starts-with.js │ │ │ │ ├── strike.js │ │ │ │ ├── sub.js │ │ │ │ ├── substr.js │ │ │ │ ├── sup.js │ │ │ │ ├── to-well-formed.js │ │ │ │ ├── trim-end.js │ │ │ │ ├── trim-left.js │ │ │ │ ├── trim-right.js │ │ │ │ ├── trim-start.js │ │ │ │ ├── trim.js │ │ │ │ └── virtual/ │ │ │ │ ├── anchor.js │ │ │ │ ├── at.js │ │ │ │ ├── big.js │ │ │ │ ├── blink.js │ │ │ │ ├── bold.js │ │ │ │ ├── code-point-at.js │ │ │ │ ├── code-points.js │ │ │ │ ├── ends-with.js │ │ │ │ ├── fixed.js │ │ │ │ ├── fontcolor.js │ │ │ │ ├── fontsize.js │ │ │ │ ├── includes.js │ │ │ │ ├── index.js │ │ │ │ ├── is-well-formed.js │ │ │ │ ├── italics.js │ │ │ │ ├── iterator.js │ │ │ │ ├── link.js │ │ │ │ ├── match-all.js │ │ │ │ ├── pad-end.js │ │ │ │ ├── pad-start.js │ │ │ │ ├── repeat.js │ │ │ │ ├── replace-all.js │ │ │ │ ├── small.js │ │ │ │ ├── starts-with.js │ │ │ │ ├── strike.js │ │ │ │ ├── sub.js │ │ │ │ ├── substr.js │ │ │ │ ├── sup.js │ │ │ │ ├── to-well-formed.js │ │ │ │ ├── trim-end.js │ │ │ │ ├── trim-left.js │ │ │ │ ├── trim-right.js │ │ │ │ ├── trim-start.js │ │ │ │ └── trim.js │ │ │ ├── structured-clone.js │ │ │ ├── suppressed-error.js │ │ │ ├── symbol/ │ │ │ │ ├── async-dispose.js │ │ │ │ ├── async-iterator.js │ │ │ │ ├── custom-matcher.js │ │ │ │ ├── description.js │ │ │ │ ├── dispose.js │ │ │ │ ├── for.js │ │ │ │ ├── has-instance.js │ │ │ │ ├── index.js │ │ │ │ ├── is-concat-spreadable.js │ │ │ │ ├── is-registered-symbol.js │ │ │ │ ├── is-registered.js │ │ │ │ ├── is-well-known-symbol.js │ │ │ │ ├── is-well-known.js │ │ │ │ ├── iterator.js │ │ │ │ ├── key-for.js │ │ │ │ ├── match-all.js │ │ │ │ ├── match.js │ │ │ │ ├── matcher.js │ │ │ │ ├── metadata-key.js │ │ │ │ ├── metadata.js │ │ │ │ ├── observable.js │ │ │ │ ├── pattern-match.js │ │ │ │ ├── replace-all.js │ │ │ │ ├── replace.js │ │ │ │ ├── search.js │ │ │ │ ├── species.js │ │ │ │ ├── split.js │ │ │ │ ├── to-primitive.js │ │ │ │ ├── to-string-tag.js │ │ │ │ └── unscopables.js │ │ │ ├── typed-array/ │ │ │ │ ├── at.js │ │ │ │ ├── copy-within.js │ │ │ │ ├── entries.js │ │ │ │ ├── every.js │ │ │ │ ├── fill.js │ │ │ │ ├── filter-out.js │ │ │ │ ├── filter-reject.js │ │ │ │ ├── filter.js │ │ │ │ ├── find-index.js │ │ │ │ ├── find-last-index.js │ │ │ │ ├── find-last.js │ │ │ │ ├── find.js │ │ │ │ ├── float32-array.js │ │ │ │ ├── float64-array.js │ │ │ │ ├── for-each.js │ │ │ │ ├── from-async.js │ │ │ │ ├── from-base64.js │ │ │ │ ├── from-hex.js │ │ │ │ ├── from.js │ │ │ │ ├── group-by.js │ │ │ │ ├── includes.js │ │ │ │ ├── index-of.js │ │ │ │ ├── index.js │ │ │ │ ├── int16-array.js │ │ │ │ ├── int32-array.js │ │ │ │ ├── int8-array.js │ │ │ │ ├── iterator.js │ │ │ │ ├── join.js │ │ │ │ ├── keys.js │ │ │ │ ├── last-index-of.js │ │ │ │ ├── map.js │ │ │ │ ├── methods.js │ │ │ │ ├── of.js │ │ │ │ ├── reduce-right.js │ │ │ │ ├── reduce.js │ │ │ │ ├── reverse.js │ │ │ │ ├── set-from-base64.js │ │ │ │ ├── set-from-hex.js │ │ │ │ ├── set.js │ │ │ │ ├── slice.js │ │ │ │ ├── some.js │ │ │ │ ├── sort.js │ │ │ │ ├── subarray.js │ │ │ │ ├── to-base64.js │ │ │ │ ├── to-hex.js │ │ │ │ ├── to-locale-string.js │ │ │ │ ├── to-reversed.js │ │ │ │ ├── to-sorted.js │ │ │ │ ├── to-spliced.js │ │ │ │ ├── to-string.js │ │ │ │ ├── uint16-array.js │ │ │ │ ├── uint32-array.js │ │ │ │ ├── uint8-array.js │ │ │ │ ├── uint8-clamped-array.js │ │ │ │ ├── unique-by.js │ │ │ │ ├── values.js │ │ │ │ └── with.js │ │ │ ├── unescape.js │ │ │ ├── url/ │ │ │ │ ├── can-parse.js │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ └── to-json.js │ │ │ ├── url-search-params/ │ │ │ │ └── index.js │ │ │ ├── weak-map/ │ │ │ │ ├── delete-all.js │ │ │ │ ├── emplace.js │ │ │ │ ├── from.js │ │ │ │ ├── get-or-insert-computed.js │ │ │ │ ├── get-or-insert.js │ │ │ │ ├── index.js │ │ │ │ ├── of.js │ │ │ │ └── upsert.js │ │ │ └── weak-set/ │ │ │ ├── add-all.js │ │ │ ├── delete-all.js │ │ │ ├── from.js │ │ │ ├── index.js │ │ │ └── of.js │ │ ├── index.js │ │ ├── internals/ │ │ │ ├── README.md │ │ │ ├── a-callable.js │ │ │ ├── a-constructor.js │ │ │ ├── a-data-view.js │ │ │ ├── a-map.js │ │ │ ├── a-number.js │ │ │ ├── a-possible-prototype.js │ │ │ ├── a-set.js │ │ │ ├── a-string.js │ │ │ ├── a-weak-key.js │ │ │ ├── a-weak-map.js │ │ │ ├── a-weak-set.js │ │ │ ├── add-disposable-resource.js │ │ │ ├── add-to-unscopables.js │ │ │ ├── advance-string-index.js │ │ │ ├── an-instance.js │ │ │ ├── an-object-or-undefined.js │ │ │ ├── an-object.js │ │ │ ├── an-uint8-array.js │ │ │ ├── array-buffer-basic-detection.js │ │ │ ├── array-buffer-byte-length.js │ │ │ ├── array-buffer-is-detached.js │ │ │ ├── array-buffer-non-extensible.js │ │ │ ├── array-buffer-not-detached.js │ │ │ ├── array-buffer-transfer.js │ │ │ ├── array-buffer-view-core.js │ │ │ ├── array-buffer.js │ │ │ ├── array-copy-within.js │ │ │ ├── array-fill.js │ │ │ ├── array-for-each.js │ │ │ ├── array-from-async.js │ │ │ ├── array-from-constructor-and-list.js │ │ │ ├── array-from.js │ │ │ ├── array-group-to-map.js │ │ │ ├── array-group.js │ │ │ ├── array-includes.js │ │ │ ├── array-iteration-from-last.js │ │ │ ├── array-iteration.js │ │ │ ├── array-last-index-of.js │ │ │ ├── array-method-has-species-support.js │ │ │ ├── array-method-is-strict.js │ │ │ ├── array-reduce.js │ │ │ ├── array-set-length.js │ │ │ ├── array-slice.js │ │ │ ├── array-sort.js │ │ │ ├── array-species-constructor.js │ │ │ ├── array-species-create.js │ │ │ ├── array-unique-by.js │ │ │ ├── async-from-sync-iterator.js │ │ │ ├── async-iterator-close.js │ │ │ ├── async-iterator-create-proxy.js │ │ │ ├── async-iterator-indexed.js │ │ │ ├── async-iterator-iteration.js │ │ │ ├── async-iterator-map.js │ │ │ ├── async-iterator-prototype.js │ │ │ ├── async-iterator-wrap.js │ │ │ ├── base64-map.js │ │ │ ├── call-with-safe-iteration-closing.js │ │ │ ├── caller.js │ │ │ ├── check-correctness-of-iteration.js │ │ │ ├── classof-raw.js │ │ │ ├── classof.js │ │ │ ├── collection-from.js │ │ │ ├── collection-of.js │ │ │ ├── collection-strong.js │ │ │ ├── collection-weak.js │ │ │ ├── collection.js │ │ │ ├── composite-key.js │ │ │ ├── copy-constructor-properties.js │ │ │ ├── correct-is-regexp-logic.js │ │ │ ├── correct-prototype-getter.js │ │ │ ├── create-html.js │ │ │ ├── create-iter-result-object.js │ │ │ ├── create-non-enumerable-property.js │ │ │ ├── create-property-descriptor.js │ │ │ ├── create-property.js │ │ │ ├── date-to-iso-string.js │ │ │ ├── date-to-primitive.js │ │ │ ├── define-built-in-accessor.js │ │ │ ├── define-built-in.js │ │ │ ├── define-built-ins.js │ │ │ ├── define-global-property.js │ │ │ ├── delete-property-or-throw.js │ │ │ ├── descriptors.js │ │ │ ├── detach-transferable.js │ │ │ ├── document-create-element.js │ │ │ ├── does-not-exceed-safe-integer.js │ │ │ ├── dom-exception-constants.js │ │ │ ├── dom-iterables.js │ │ │ ├── dom-token-list-prototype.js │ │ │ ├── entry-unbind.js │ │ │ ├── entry-virtual.js │ │ │ ├── enum-bug-keys.js │ │ │ ├── environment-ff-version.js │ │ │ ├── environment-is-ie-or-edge.js │ │ │ ├── environment-is-ios-pebble.js │ │ │ ├── environment-is-ios.js │ │ │ ├── environment-is-node.js │ │ │ ├── environment-is-webos-webkit.js │ │ │ ├── environment-user-agent.js │ │ │ ├── environment-v8-version.js │ │ │ ├── environment-webkit-version.js │ │ │ ├── environment.js │ │ │ ├── error-stack-clear.js │ │ │ ├── error-stack-install.js │ │ │ ├── error-stack-installable.js │ │ │ ├── error-to-string.js │ │ │ ├── export.js │ │ │ ├── fails.js │ │ │ ├── fix-regexp-well-known-symbol-logic.js │ │ │ ├── flatten-into-array.js │ │ │ ├── freezing.js │ │ │ ├── function-apply.js │ │ │ ├── function-bind-context.js │ │ │ ├── function-bind-native.js │ │ │ ├── function-bind.js │ │ │ ├── function-call.js │ │ │ ├── function-demethodize.js │ │ │ ├── function-name.js │ │ │ ├── function-uncurry-this-accessor.js │ │ │ ├── function-uncurry-this-clause.js │ │ │ ├── function-uncurry-this.js │ │ │ ├── get-alphabet-option.js │ │ │ ├── get-async-iterator-flattenable.js │ │ │ ├── get-async-iterator.js │ │ │ ├── get-built-in-node-module.js │ │ │ ├── get-built-in-prototype-method.js │ │ │ ├── get-built-in.js │ │ │ ├── get-iterator-direct.js │ │ │ ├── get-iterator-flattenable.js │ │ │ ├── get-iterator-method.js │ │ │ ├── get-iterator-record.js │ │ │ ├── get-iterator.js │ │ │ ├── get-method.js │ │ │ ├── get-mode-option.js │ │ │ ├── get-set-record.js │ │ │ ├── get-substitution.js │ │ │ ├── global-this.js │ │ │ ├── has-own-property.js │ │ │ ├── hidden-keys.js │ │ │ ├── host-report-errors.js │ │ │ ├── html.js │ │ │ ├── ie8-dom-define.js │ │ │ ├── ieee754.js │ │ │ ├── indexed-object.js │ │ │ ├── inherit-if-required.js │ │ │ ├── inspect-source.js │ │ │ ├── install-error-cause.js │ │ │ ├── internal-metadata.js │ │ │ ├── internal-state.js │ │ │ ├── is-array-iterator-method.js │ │ │ ├── is-array.js │ │ │ ├── is-big-int-array.js │ │ │ ├── is-callable.js │ │ │ ├── is-constructor.js │ │ │ ├── is-data-descriptor.js │ │ │ ├── is-forced.js │ │ │ ├── is-integral-number.js │ │ │ ├── is-iterable.js │ │ │ ├── is-null-or-undefined.js │ │ │ ├── is-object.js │ │ │ ├── is-possible-prototype.js │ │ │ ├── is-pure.js │ │ │ ├── is-raw-json.js │ │ │ ├── is-regexp.js │ │ │ ├── is-symbol.js │ │ │ ├── iterate-simple.js │ │ │ ├── iterate.js │ │ │ ├── iterator-close-all.js │ │ │ ├── iterator-close.js │ │ │ ├── iterator-create-constructor.js │ │ │ ├── iterator-create-proxy.js │ │ │ ├── iterator-define.js │ │ │ ├── iterator-helper-throws-on-invalid-iterator.js │ │ │ ├── iterator-helper-without-closing-on-early-error.js │ │ │ ├── iterator-indexed.js │ │ │ ├── iterator-window.js │ │ │ ├── iterator-zip.js │ │ │ ├── iterators-core.js │ │ │ ├── iterators.js │ │ │ ├── length-of-array-like.js │ │ │ ├── make-built-in.js │ │ │ ├── map-helpers.js │ │ │ ├── map-iterate.js │ │ │ ├── map-upsert.js │ │ │ ├── math-clamp.js │ │ │ ├── math-expm1.js │ │ │ ├── math-float-round.js │ │ │ ├── math-fround.js │ │ │ ├── math-log10.js │ │ │ ├── math-log1p.js │ │ │ ├── math-log2.js │ │ │ ├── math-round-ties-to-even.js │ │ │ ├── math-scale.js │ │ │ ├── math-sign.js │ │ │ ├── math-trunc.js │ │ │ ├── microtask.js │ │ │ ├── native-raw-json.js │ │ │ ├── new-promise-capability.js │ │ │ ├── normalize-string-argument.js │ │ │ ├── not-a-nan.js │ │ │ ├── not-a-regexp.js │ │ │ ├── number-is-finite.js │ │ │ ├── number-parse-float.js │ │ │ ├── number-parse-int.js │ │ │ ├── numeric-range-iterator.js │ │ │ ├── object-assign.js │ │ │ ├── object-create.js │ │ │ ├── object-define-properties.js │ │ │ ├── object-define-property.js │ │ │ ├── object-get-own-property-descriptor.js │ │ │ ├── object-get-own-property-names-external.js │ │ │ ├── object-get-own-property-names.js │ │ │ ├── object-get-own-property-symbols.js │ │ │ ├── object-get-prototype-of.js │ │ │ ├── object-is-extensible.js │ │ │ ├── object-is-prototype-of.js │ │ │ ├── object-iterator.js │ │ │ ├── object-keys-internal.js │ │ │ ├── object-keys.js │ │ │ ├── object-property-is-enumerable.js │ │ │ ├── object-prototype-accessors-forced.js │ │ │ ├── object-set-prototype-of.js │ │ │ ├── object-to-array.js │ │ │ ├── object-to-string.js │ │ │ ├── ordinary-to-primitive.js │ │ │ ├── own-keys.js │ │ │ ├── parse-json-string.js │ │ │ ├── path.js │ │ │ ├── perform.js │ │ │ ├── promise-constructor-detection.js │ │ │ ├── promise-native-constructor.js │ │ │ ├── promise-resolve.js │ │ │ ├── promise-statics-incorrect-iteration.js │ │ │ ├── proxy-accessor.js │ │ │ ├── queue.js │ │ │ ├── reflect-metadata.js │ │ │ ├── regexp-exec-abstract.js │ │ │ ├── regexp-exec.js │ │ │ ├── regexp-flags-detection.js │ │ │ ├── regexp-flags.js │ │ │ ├── regexp-get-flags.js │ │ │ ├── regexp-sticky-helpers.js │ │ │ ├── regexp-unsupported-dot-all.js │ │ │ ├── regexp-unsupported-ncg.js │ │ │ ├── require-object-coercible.js │ │ │ ├── safe-get-built-in.js │ │ │ ├── same-value-zero.js │ │ │ ├── same-value.js │ │ │ ├── schedulers-fix.js │ │ │ ├── set-clone.js │ │ │ ├── set-difference.js │ │ │ ├── set-helpers.js │ │ │ ├── set-intersection.js │ │ │ ├── set-is-disjoint-from.js │ │ │ ├── set-is-subset-of.js │ │ │ ├── set-is-superset-of.js │ │ │ ├── set-iterate.js │ │ │ ├── set-method-accept-set-like.js │ │ │ ├── set-method-get-keys-before-cloning-detection.js │ │ │ ├── set-size.js │ │ │ ├── set-species.js │ │ │ ├── set-symmetric-difference.js │ │ │ ├── set-to-string-tag.js │ │ │ ├── set-union.js │ │ │ ├── shared-key.js │ │ │ ├── shared-store.js │ │ │ ├── shared.js │ │ │ ├── species-constructor.js │ │ │ ├── string-cooked.js │ │ │ ├── string-html-forced.js │ │ │ ├── string-multibyte.js │ │ │ ├── string-pad-webkit-bug.js │ │ │ ├── string-pad.js │ │ │ ├── string-parse.js │ │ │ ├── string-punycode-to-ascii.js │ │ │ ├── string-repeat.js │ │ │ ├── string-trim-end.js │ │ │ ├── string-trim-forced.js │ │ │ ├── string-trim-start.js │ │ │ ├── string-trim.js │ │ │ ├── structured-clone-proper-transfer.js │ │ │ ├── symbol-constructor-detection.js │ │ │ ├── symbol-define-to-primitive.js │ │ │ ├── symbol-is-registered.js │ │ │ ├── symbol-is-well-known.js │ │ │ ├── symbol-registry-detection.js │ │ │ ├── task.js │ │ │ ├── this-number-value.js │ │ │ ├── to-absolute-index.js │ │ │ ├── to-big-int.js │ │ │ ├── to-index.js │ │ │ ├── to-indexed-object.js │ │ │ ├── to-integer-or-infinity.js │ │ │ ├── to-length.js │ │ │ ├── to-object.js │ │ │ ├── to-offset.js │ │ │ ├── to-positive-integer.js │ │ │ ├── to-primitive.js │ │ │ ├── to-property-key.js │ │ │ ├── to-set-like.js │ │ │ ├── to-string-tag-support.js │ │ │ ├── to-string.js │ │ │ ├── to-uint8-clamped.js │ │ │ ├── try-to-string.js │ │ │ ├── typed-array-constructor.js │ │ │ ├── typed-array-constructors-require-wrappers.js │ │ │ ├── typed-array-from-same-type-and-list.js │ │ │ ├── typed-array-from.js │ │ │ ├── uid.js │ │ │ ├── uint8-from-base64.js │ │ │ ├── uint8-from-hex.js │ │ │ ├── url-constructor-detection.js │ │ │ ├── use-symbol-as-uid.js │ │ │ ├── v8-prototype-define-bug.js │ │ │ ├── validate-arguments-length.js │ │ │ ├── weak-map-basic-detection.js │ │ │ ├── weak-map-helpers.js │ │ │ ├── weak-set-helpers.js │ │ │ ├── well-known-symbol-define.js │ │ │ ├── well-known-symbol-wrapped.js │ │ │ ├── well-known-symbol.js │ │ │ ├── whitespaces.js │ │ │ └── wrap-error-constructor-with-cause.js │ │ ├── modules/ │ │ │ ├── README.md │ │ │ ├── es.aggregate-error.cause.js │ │ │ ├── es.aggregate-error.constructor.js │ │ │ ├── es.aggregate-error.js │ │ │ ├── es.array-buffer.constructor.js │ │ │ ├── es.array-buffer.detached.js │ │ │ ├── es.array-buffer.is-view.js │ │ │ ├── es.array-buffer.slice.js │ │ │ ├── es.array-buffer.transfer-to-fixed-length.js │ │ │ ├── es.array-buffer.transfer.js │ │ │ ├── es.array.at.js │ │ │ ├── es.array.concat.js │ │ │ ├── es.array.copy-within.js │ │ │ ├── es.array.every.js │ │ │ ├── es.array.fill.js │ │ │ ├── es.array.filter.js │ │ │ ├── es.array.find-index.js │ │ │ ├── es.array.find-last-index.js │ │ │ ├── es.array.find-last.js │ │ │ ├── es.array.find.js │ │ │ ├── es.array.flat-map.js │ │ │ ├── es.array.flat.js │ │ │ ├── es.array.for-each.js │ │ │ ├── es.array.from-async.js │ │ │ ├── es.array.from.js │ │ │ ├── es.array.includes.js │ │ │ ├── es.array.index-of.js │ │ │ ├── es.array.is-array.js │ │ │ ├── es.array.iterator.js │ │ │ ├── es.array.join.js │ │ │ ├── es.array.last-index-of.js │ │ │ ├── es.array.map.js │ │ │ ├── es.array.of.js │ │ │ ├── es.array.push.js │ │ │ ├── es.array.reduce-right.js │ │ │ ├── es.array.reduce.js │ │ │ ├── es.array.reverse.js │ │ │ ├── es.array.slice.js │ │ │ ├── es.array.some.js │ │ │ ├── es.array.sort.js │ │ │ ├── es.array.species.js │ │ │ ├── es.array.splice.js │ │ │ ├── es.array.to-reversed.js │ │ │ ├── es.array.to-sorted.js │ │ │ ├── es.array.to-spliced.js │ │ │ ├── es.array.unscopables.flat-map.js │ │ │ ├── es.array.unscopables.flat.js │ │ │ ├── es.array.unshift.js │ │ │ ├── es.array.with.js │ │ │ ├── es.async-disposable-stack.constructor.js │ │ │ ├── es.async-iterator.async-dispose.js │ │ │ ├── es.data-view.constructor.js │ │ │ ├── es.data-view.get-float16.js │ │ │ ├── es.data-view.js │ │ │ ├── es.data-view.set-float16.js │ │ │ ├── es.date.get-year.js │ │ │ ├── es.date.now.js │ │ │ ├── es.date.set-year.js │ │ │ ├── es.date.to-gmt-string.js │ │ │ ├── es.date.to-iso-string.js │ │ │ ├── es.date.to-json.js │ │ │ ├── es.date.to-primitive.js │ │ │ ├── es.date.to-string.js │ │ │ ├── es.disposable-stack.constructor.js │ │ │ ├── es.error.cause.js │ │ │ ├── es.error.is-error.js │ │ │ ├── es.error.to-string.js │ │ │ ├── es.escape.js │ │ │ ├── es.function.bind.js │ │ │ ├── es.function.has-instance.js │ │ │ ├── es.function.name.js │ │ │ ├── es.global-this.js │ │ │ ├── es.iterator.concat.js │ │ │ ├── es.iterator.constructor.js │ │ │ ├── es.iterator.dispose.js │ │ │ ├── es.iterator.drop.js │ │ │ ├── es.iterator.every.js │ │ │ ├── es.iterator.filter.js │ │ │ ├── es.iterator.find.js │ │ │ ├── es.iterator.flat-map.js │ │ │ ├── es.iterator.for-each.js │ │ │ ├── es.iterator.from.js │ │ │ ├── es.iterator.map.js │ │ │ ├── es.iterator.reduce.js │ │ │ ├── es.iterator.some.js │ │ │ ├── es.iterator.take.js │ │ │ ├── es.iterator.to-array.js │ │ │ ├── es.json.is-raw-json.js │ │ │ ├── es.json.parse.js │ │ │ ├── es.json.raw-json.js │ │ │ ├── es.json.stringify.js │ │ │ ├── es.json.to-string-tag.js │ │ │ ├── es.map.constructor.js │ │ │ ├── es.map.get-or-insert-computed.js │ │ │ ├── es.map.get-or-insert.js │ │ │ ├── es.map.group-by.js │ │ │ ├── es.map.js │ │ │ ├── es.math.acosh.js │ │ │ ├── es.math.asinh.js │ │ │ ├── es.math.atanh.js │ │ │ ├── es.math.cbrt.js │ │ │ ├── es.math.clz32.js │ │ │ ├── es.math.cosh.js │ │ │ ├── es.math.expm1.js │ │ │ ├── es.math.f16round.js │ │ │ ├── es.math.fround.js │ │ │ ├── es.math.hypot.js │ │ │ ├── es.math.imul.js │ │ │ ├── es.math.log10.js │ │ │ ├── es.math.log1p.js │ │ │ ├── es.math.log2.js │ │ │ ├── es.math.sign.js │ │ │ ├── es.math.sinh.js │ │ │ ├── es.math.sum-precise.js │ │ │ ├── es.math.tanh.js │ │ │ ├── es.math.to-string-tag.js │ │ │ ├── es.math.trunc.js │ │ │ ├── es.number.constructor.js │ │ │ ├── es.number.epsilon.js │ │ │ ├── es.number.is-finite.js │ │ │ ├── es.number.is-integer.js │ │ │ ├── es.number.is-nan.js │ │ │ ├── es.number.is-safe-integer.js │ │ │ ├── es.number.max-safe-integer.js │ │ │ ├── es.number.min-safe-integer.js │ │ │ ├── es.number.parse-float.js │ │ │ ├── es.number.parse-int.js │ │ │ ├── es.number.to-exponential.js │ │ │ ├── es.number.to-fixed.js │ │ │ ├── es.number.to-precision.js │ │ │ ├── es.object.assign.js │ │ │ ├── es.object.create.js │ │ │ ├── es.object.define-getter.js │ │ │ ├── es.object.define-properties.js │ │ │ ├── es.object.define-property.js │ │ │ ├── es.object.define-setter.js │ │ │ ├── es.object.entries.js │ │ │ ├── es.object.freeze.js │ │ │ ├── es.object.from-entries.js │ │ │ ├── es.object.get-own-property-descriptor.js │ │ │ ├── es.object.get-own-property-descriptors.js │ │ │ ├── es.object.get-own-property-names.js │ │ │ ├── es.object.get-own-property-symbols.js │ │ │ ├── es.object.get-prototype-of.js │ │ │ ├── es.object.group-by.js │ │ │ ├── es.object.has-own.js │ │ │ ├── es.object.is-extensible.js │ │ │ ├── es.object.is-frozen.js │ │ │ ├── es.object.is-sealed.js │ │ │ ├── es.object.is.js │ │ │ ├── es.object.keys.js │ │ │ ├── es.object.lookup-getter.js │ │ │ ├── es.object.lookup-setter.js │ │ │ ├── es.object.prevent-extensions.js │ │ │ ├── es.object.proto.js │ │ │ ├── es.object.seal.js │ │ │ ├── es.object.set-prototype-of.js │ │ │ ├── es.object.to-string.js │ │ │ ├── es.object.values.js │ │ │ ├── es.parse-float.js │ │ │ ├── es.parse-int.js │ │ │ ├── es.promise.all-settled.js │ │ │ ├── es.promise.all.js │ │ │ ├── es.promise.any.js │ │ │ ├── es.promise.catch.js │ │ │ ├── es.promise.constructor.js │ │ │ ├── es.promise.finally.js │ │ │ ├── es.promise.js │ │ │ ├── es.promise.race.js │ │ │ ├── es.promise.reject.js │ │ │ ├── es.promise.resolve.js │ │ │ ├── es.promise.try.js │ │ │ ├── es.promise.with-resolvers.js │ │ │ ├── es.reflect.apply.js │ │ │ ├── es.reflect.construct.js │ │ │ ├── es.reflect.define-property.js │ │ │ ├── es.reflect.delete-property.js │ │ │ ├── es.reflect.get-own-property-descriptor.js │ │ │ ├── es.reflect.get-prototype-of.js │ │ │ ├── es.reflect.get.js │ │ │ ├── es.reflect.has.js │ │ │ ├── es.reflect.is-extensible.js │ │ │ ├── es.reflect.own-keys.js │ │ │ ├── es.reflect.prevent-extensions.js │ │ │ ├── es.reflect.set-prototype-of.js │ │ │ ├── es.reflect.set.js │ │ │ ├── es.reflect.to-string-tag.js │ │ │ ├── es.regexp.constructor.js │ │ │ ├── es.regexp.dot-all.js │ │ │ ├── es.regexp.escape.js │ │ │ ├── es.regexp.exec.js │ │ │ ├── es.regexp.flags.js │ │ │ ├── es.regexp.sticky.js │ │ │ ├── es.regexp.test.js │ │ │ ├── es.regexp.to-string.js │ │ │ ├── es.set.constructor.js │ │ │ ├── es.set.difference.v2.js │ │ │ ├── es.set.intersection.v2.js │ │ │ ├── es.set.is-disjoint-from.v2.js │ │ │ ├── es.set.is-subset-of.v2.js │ │ │ ├── es.set.is-superset-of.v2.js │ │ │ ├── es.set.js │ │ │ ├── es.set.symmetric-difference.v2.js │ │ │ ├── es.set.union.v2.js │ │ │ ├── es.string.anchor.js │ │ │ ├── es.string.at-alternative.js │ │ │ ├── es.string.big.js │ │ │ ├── es.string.blink.js │ │ │ ├── es.string.bold.js │ │ │ ├── es.string.code-point-at.js │ │ │ ├── es.string.ends-with.js │ │ │ ├── es.string.fixed.js │ │ │ ├── es.string.fontcolor.js │ │ │ ├── es.string.fontsize.js │ │ │ ├── es.string.from-code-point.js │ │ │ ├── es.string.includes.js │ │ │ ├── es.string.is-well-formed.js │ │ │ ├── es.string.italics.js │ │ │ ├── es.string.iterator.js │ │ │ ├── es.string.link.js │ │ │ ├── es.string.match-all.js │ │ │ ├── es.string.match.js │ │ │ ├── es.string.pad-end.js │ │ │ ├── es.string.pad-start.js │ │ │ ├── es.string.raw.js │ │ │ ├── es.string.repeat.js │ │ │ ├── es.string.replace-all.js │ │ │ ├── es.string.replace.js │ │ │ ├── es.string.search.js │ │ │ ├── es.string.small.js │ │ │ ├── es.string.split.js │ │ │ ├── es.string.starts-with.js │ │ │ ├── es.string.strike.js │ │ │ ├── es.string.sub.js │ │ │ ├── es.string.substr.js │ │ │ ├── es.string.sup.js │ │ │ ├── es.string.to-well-formed.js │ │ │ ├── es.string.trim-end.js │ │ │ ├── es.string.trim-left.js │ │ │ ├── es.string.trim-right.js │ │ │ ├── es.string.trim-start.js │ │ │ ├── es.string.trim.js │ │ │ ├── es.suppressed-error.constructor.js │ │ │ ├── es.symbol.async-dispose.js │ │ │ ├── es.symbol.async-iterator.js │ │ │ ├── es.symbol.constructor.js │ │ │ ├── es.symbol.description.js │ │ │ ├── es.symbol.dispose.js │ │ │ ├── es.symbol.for.js │ │ │ ├── es.symbol.has-instance.js │ │ │ ├── es.symbol.is-concat-spreadable.js │ │ │ ├── es.symbol.iterator.js │ │ │ ├── es.symbol.js │ │ │ ├── es.symbol.key-for.js │ │ │ ├── es.symbol.match-all.js │ │ │ ├── es.symbol.match.js │ │ │ ├── es.symbol.replace.js │ │ │ ├── es.symbol.search.js │ │ │ ├── es.symbol.species.js │ │ │ ├── es.symbol.split.js │ │ │ ├── es.symbol.to-primitive.js │ │ │ ├── es.symbol.to-string-tag.js │ │ │ ├── es.symbol.unscopables.js │ │ │ ├── es.typed-array.at.js │ │ │ ├── es.typed-array.copy-within.js │ │ │ ├── es.typed-array.every.js │ │ │ ├── es.typed-array.fill.js │ │ │ ├── es.typed-array.filter.js │ │ │ ├── es.typed-array.find-index.js │ │ │ ├── es.typed-array.find-last-index.js │ │ │ ├── es.typed-array.find-last.js │ │ │ ├── es.typed-array.find.js │ │ │ ├── es.typed-array.float32-array.js │ │ │ ├── es.typed-array.float64-array.js │ │ │ ├── es.typed-array.for-each.js │ │ │ ├── es.typed-array.from.js │ │ │ ├── es.typed-array.includes.js │ │ │ ├── es.typed-array.index-of.js │ │ │ ├── es.typed-array.int16-array.js │ │ │ ├── es.typed-array.int32-array.js │ │ │ ├── es.typed-array.int8-array.js │ │ │ ├── es.typed-array.iterator.js │ │ │ ├── es.typed-array.join.js │ │ │ ├── es.typed-array.last-index-of.js │ │ │ ├── es.typed-array.map.js │ │ │ ├── es.typed-array.of.js │ │ │ ├── es.typed-array.reduce-right.js │ │ │ ├── es.typed-array.reduce.js │ │ │ ├── es.typed-array.reverse.js │ │ │ ├── es.typed-array.set.js │ │ │ ├── es.typed-array.slice.js │ │ │ ├── es.typed-array.some.js │ │ │ ├── es.typed-array.sort.js │ │ │ ├── es.typed-array.subarray.js │ │ │ ├── es.typed-array.to-locale-string.js │ │ │ ├── es.typed-array.to-reversed.js │ │ │ ├── es.typed-array.to-sorted.js │ │ │ ├── es.typed-array.to-string.js │ │ │ ├── es.typed-array.uint16-array.js │ │ │ ├── es.typed-array.uint32-array.js │ │ │ ├── es.typed-array.uint8-array.js │ │ │ ├── es.typed-array.uint8-clamped-array.js │ │ │ ├── es.typed-array.with.js │ │ │ ├── es.uint8-array.from-base64.js │ │ │ ├── es.uint8-array.from-hex.js │ │ │ ├── es.uint8-array.set-from-base64.js │ │ │ ├── es.uint8-array.set-from-hex.js │ │ │ ├── es.uint8-array.to-base64.js │ │ │ ├── es.uint8-array.to-hex.js │ │ │ ├── es.unescape.js │ │ │ ├── es.weak-map.constructor.js │ │ │ ├── es.weak-map.get-or-insert-computed.js │ │ │ ├── es.weak-map.get-or-insert.js │ │ │ ├── es.weak-map.js │ │ │ ├── es.weak-set.constructor.js │ │ │ ├── es.weak-set.js │ │ │ ├── esnext.aggregate-error.js │ │ │ ├── esnext.array-buffer.detached.js │ │ │ ├── esnext.array-buffer.transfer-to-fixed-length.js │ │ │ ├── esnext.array-buffer.transfer.js │ │ │ ├── esnext.array.at.js │ │ │ ├── esnext.array.filter-out.js │ │ │ ├── esnext.array.filter-reject.js │ │ │ ├── esnext.array.find-last-index.js │ │ │ ├── esnext.array.find-last.js │ │ │ ├── esnext.array.from-async.js │ │ │ ├── esnext.array.group-by-to-map.js │ │ │ ├── esnext.array.group-by.js │ │ │ ├── esnext.array.group-to-map.js │ │ │ ├── esnext.array.group.js │ │ │ ├── esnext.array.is-template-object.js │ │ │ ├── esnext.array.last-index.js │ │ │ ├── esnext.array.last-item.js │ │ │ ├── esnext.array.to-reversed.js │ │ │ ├── esnext.array.to-sorted.js │ │ │ ├── esnext.array.to-spliced.js │ │ │ ├── esnext.array.unique-by.js │ │ │ ├── esnext.array.with.js │ │ │ ├── esnext.async-disposable-stack.constructor.js │ │ │ ├── esnext.async-iterator.as-indexed-pairs.js │ │ │ ├── esnext.async-iterator.async-dispose.js │ │ │ ├── esnext.async-iterator.constructor.js │ │ │ ├── esnext.async-iterator.drop.js │ │ │ ├── esnext.async-iterator.every.js │ │ │ ├── esnext.async-iterator.filter.js │ │ │ ├── esnext.async-iterator.find.js │ │ │ ├── esnext.async-iterator.flat-map.js │ │ │ ├── esnext.async-iterator.for-each.js │ │ │ ├── esnext.async-iterator.from.js │ │ │ ├── esnext.async-iterator.indexed.js │ │ │ ├── esnext.async-iterator.map.js │ │ │ ├── esnext.async-iterator.reduce.js │ │ │ ├── esnext.async-iterator.some.js │ │ │ ├── esnext.async-iterator.take.js │ │ │ ├── esnext.async-iterator.to-array.js │ │ │ ├── esnext.bigint.range.js │ │ │ ├── esnext.composite-key.js │ │ │ ├── esnext.composite-symbol.js │ │ │ ├── esnext.data-view.get-float16.js │ │ │ ├── esnext.data-view.get-uint8-clamped.js │ │ │ ├── esnext.data-view.set-float16.js │ │ │ ├── esnext.data-view.set-uint8-clamped.js │ │ │ ├── esnext.disposable-stack.constructor.js │ │ │ ├── esnext.error.is-error.js │ │ │ ├── esnext.function.demethodize.js │ │ │ ├── esnext.function.is-callable.js │ │ │ ├── esnext.function.is-constructor.js │ │ │ ├── esnext.function.metadata.js │ │ │ ├── esnext.function.un-this.js │ │ │ ├── esnext.global-this.js │ │ │ ├── esnext.iterator.as-indexed-pairs.js │ │ │ ├── esnext.iterator.chunks.js │ │ │ ├── esnext.iterator.concat.js │ │ │ ├── esnext.iterator.constructor.js │ │ │ ├── esnext.iterator.dispose.js │ │ │ ├── esnext.iterator.drop.js │ │ │ ├── esnext.iterator.every.js │ │ │ ├── esnext.iterator.filter.js │ │ │ ├── esnext.iterator.find.js │ │ │ ├── esnext.iterator.flat-map.js │ │ │ ├── esnext.iterator.for-each.js │ │ │ ├── esnext.iterator.from.js │ │ │ ├── esnext.iterator.indexed.js │ │ │ ├── esnext.iterator.map.js │ │ │ ├── esnext.iterator.range.js │ │ │ ├── esnext.iterator.reduce.js │ │ │ ├── esnext.iterator.sliding.js │ │ │ ├── esnext.iterator.some.js │ │ │ ├── esnext.iterator.take.js │ │ │ ├── esnext.iterator.to-array.js │ │ │ ├── esnext.iterator.to-async.js │ │ │ ├── esnext.iterator.windows.js │ │ │ ├── esnext.iterator.zip-keyed.js │ │ │ ├── esnext.iterator.zip.js │ │ │ ├── esnext.json.is-raw-json.js │ │ │ ├── esnext.json.parse.js │ │ │ ├── esnext.json.raw-json.js │ │ │ ├── esnext.map.delete-all.js │ │ │ ├── esnext.map.emplace.js │ │ │ ├── esnext.map.every.js │ │ │ ├── esnext.map.filter.js │ │ │ ├── esnext.map.find-key.js │ │ │ ├── esnext.map.find.js │ │ │ ├── esnext.map.from.js │ │ │ ├── esnext.map.get-or-insert-computed.js │ │ │ ├── esnext.map.get-or-insert.js │ │ │ ├── esnext.map.group-by.js │ │ │ ├── esnext.map.includes.js │ │ │ ├── esnext.map.key-by.js │ │ │ ├── esnext.map.key-of.js │ │ │ ├── esnext.map.map-keys.js │ │ │ ├── esnext.map.map-values.js │ │ │ ├── esnext.map.merge.js │ │ │ ├── esnext.map.of.js │ │ │ ├── esnext.map.reduce.js │ │ │ ├── esnext.map.some.js │ │ │ ├── esnext.map.update-or-insert.js │ │ │ ├── esnext.map.update.js │ │ │ ├── esnext.map.upsert.js │ │ │ ├── esnext.math.clamp.js │ │ │ ├── esnext.math.deg-per-rad.js │ │ │ ├── esnext.math.degrees.js │ │ │ ├── esnext.math.f16round.js │ │ │ ├── esnext.math.fscale.js │ │ │ ├── esnext.math.iaddh.js │ │ │ ├── esnext.math.imulh.js │ │ │ ├── esnext.math.isubh.js │ │ │ ├── esnext.math.rad-per-deg.js │ │ │ ├── esnext.math.radians.js │ │ │ ├── esnext.math.scale.js │ │ │ ├── esnext.math.seeded-prng.js │ │ │ ├── esnext.math.signbit.js │ │ │ ├── esnext.math.sum-precise.js │ │ │ ├── esnext.math.umulh.js │ │ │ ├── esnext.number.clamp.js │ │ │ ├── esnext.number.from-string.js │ │ │ ├── esnext.number.range.js │ │ │ ├── esnext.object.group-by.js │ │ │ ├── esnext.object.has-own.js │ │ │ ├── esnext.object.iterate-entries.js │ │ │ ├── esnext.object.iterate-keys.js │ │ │ ├── esnext.object.iterate-values.js │ │ │ ├── esnext.observable.constructor.js │ │ │ ├── esnext.observable.from.js │ │ │ ├── esnext.observable.js │ │ │ ├── esnext.observable.of.js │ │ │ ├── esnext.promise.all-settled.js │ │ │ ├── esnext.promise.any.js │ │ │ ├── esnext.promise.try.js │ │ │ ├── esnext.promise.with-resolvers.js │ │ │ ├── esnext.reflect.define-metadata.js │ │ │ ├── esnext.reflect.delete-metadata.js │ │ │ ├── esnext.reflect.get-metadata-keys.js │ │ │ ├── esnext.reflect.get-metadata.js │ │ │ ├── esnext.reflect.get-own-metadata-keys.js │ │ │ ├── esnext.reflect.get-own-metadata.js │ │ │ ├── esnext.reflect.has-metadata.js │ │ │ ├── esnext.reflect.has-own-metadata.js │ │ │ ├── esnext.reflect.metadata.js │ │ │ ├── esnext.regexp.escape.js │ │ │ ├── esnext.set.add-all.js │ │ │ ├── esnext.set.delete-all.js │ │ │ ├── esnext.set.difference.js │ │ │ ├── esnext.set.difference.v2.js │ │ │ ├── esnext.set.every.js │ │ │ ├── esnext.set.filter.js │ │ │ ├── esnext.set.find.js │ │ │ ├── esnext.set.from.js │ │ │ ├── esnext.set.intersection.js │ │ │ ├── esnext.set.intersection.v2.js │ │ │ ├── esnext.set.is-disjoint-from.js │ │ │ ├── esnext.set.is-disjoint-from.v2.js │ │ │ ├── esnext.set.is-subset-of.js │ │ │ ├── esnext.set.is-subset-of.v2.js │ │ │ ├── esnext.set.is-superset-of.js │ │ │ ├── esnext.set.is-superset-of.v2.js │ │ │ ├── esnext.set.join.js │ │ │ ├── esnext.set.map.js │ │ │ ├── esnext.set.of.js │ │ │ ├── esnext.set.reduce.js │ │ │ ├── esnext.set.some.js │ │ │ ├── esnext.set.symmetric-difference.js │ │ │ ├── esnext.set.symmetric-difference.v2.js │ │ │ ├── esnext.set.union.js │ │ │ ├── esnext.set.union.v2.js │ │ │ ├── esnext.string.at-alternative.js │ │ │ ├── esnext.string.at.js │ │ │ ├── esnext.string.code-points.js │ │ │ ├── esnext.string.cooked.js │ │ │ ├── esnext.string.dedent.js │ │ │ ├── esnext.string.is-well-formed.js │ │ │ ├── esnext.string.match-all.js │ │ │ ├── esnext.string.replace-all.js │ │ │ ├── esnext.string.to-well-formed.js │ │ │ ├── esnext.suppressed-error.constructor.js │ │ │ ├── esnext.symbol.async-dispose.js │ │ │ ├── esnext.symbol.custom-matcher.js │ │ │ ├── esnext.symbol.dispose.js │ │ │ ├── esnext.symbol.is-registered-symbol.js │ │ │ ├── esnext.symbol.is-registered.js │ │ │ ├── esnext.symbol.is-well-known-symbol.js │ │ │ ├── esnext.symbol.is-well-known.js │ │ │ ├── esnext.symbol.matcher.js │ │ │ ├── esnext.symbol.metadata-key.js │ │ │ ├── esnext.symbol.metadata.js │ │ │ ├── esnext.symbol.observable.js │ │ │ ├── esnext.symbol.pattern-match.js │ │ │ ├── esnext.symbol.replace-all.js │ │ │ ├── esnext.typed-array.at.js │ │ │ ├── esnext.typed-array.filter-out.js │ │ │ ├── esnext.typed-array.filter-reject.js │ │ │ ├── esnext.typed-array.find-last-index.js │ │ │ ├── esnext.typed-array.find-last.js │ │ │ ├── esnext.typed-array.from-async.js │ │ │ ├── esnext.typed-array.group-by.js │ │ │ ├── esnext.typed-array.to-reversed.js │ │ │ ├── esnext.typed-array.to-sorted.js │ │ │ ├── esnext.typed-array.to-spliced.js │ │ │ ├── esnext.typed-array.unique-by.js │ │ │ ├── esnext.typed-array.with.js │ │ │ ├── esnext.uint8-array.from-base64.js │ │ │ ├── esnext.uint8-array.from-hex.js │ │ │ ├── esnext.uint8-array.set-from-base64.js │ │ │ ├── esnext.uint8-array.set-from-hex.js │ │ │ ├── esnext.uint8-array.to-base64.js │ │ │ ├── esnext.uint8-array.to-hex.js │ │ │ ├── esnext.weak-map.delete-all.js │ │ │ ├── esnext.weak-map.emplace.js │ │ │ ├── esnext.weak-map.from.js │ │ │ ├── esnext.weak-map.get-or-insert-computed.js │ │ │ ├── esnext.weak-map.get-or-insert.js │ │ │ ├── esnext.weak-map.of.js │ │ │ ├── esnext.weak-map.upsert.js │ │ │ ├── esnext.weak-set.add-all.js │ │ │ ├── esnext.weak-set.delete-all.js │ │ │ ├── esnext.weak-set.from.js │ │ │ ├── esnext.weak-set.of.js │ │ │ ├── web.atob.js │ │ │ ├── web.btoa.js │ │ │ ├── web.clear-immediate.js │ │ │ ├── web.dom-collections.for-each.js │ │ │ ├── web.dom-collections.iterator.js │ │ │ ├── web.dom-exception.constructor.js │ │ │ ├── web.dom-exception.stack.js │ │ │ ├── web.dom-exception.to-string-tag.js │ │ │ ├── web.immediate.js │ │ │ ├── web.queue-microtask.js │ │ │ ├── web.self.js │ │ │ ├── web.set-immediate.js │ │ │ ├── web.set-interval.js │ │ │ ├── web.set-timeout.js │ │ │ ├── web.structured-clone.js │ │ │ ├── web.timers.js │ │ │ ├── web.url-search-params.constructor.js │ │ │ ├── web.url-search-params.delete.js │ │ │ ├── web.url-search-params.has.js │ │ │ ├── web.url-search-params.js │ │ │ ├── web.url-search-params.size.js │ │ │ ├── web.url.can-parse.js │ │ │ ├── web.url.constructor.js │ │ │ ├── web.url.js │ │ │ ├── web.url.parse.js │ │ │ └── web.url.to-json.js │ │ ├── package.json │ │ ├── postinstall.js │ │ ├── proposals/ │ │ │ ├── accessible-object-hasownproperty.js │ │ │ ├── array-buffer-base64.js │ │ │ ├── array-buffer-transfer.js │ │ │ ├── array-filtering-stage-1.js │ │ │ ├── array-filtering.js │ │ │ ├── array-find-from-last.js │ │ │ ├── array-flat-map.js │ │ │ ├── array-from-async-stage-2.js │ │ │ ├── array-from-async.js │ │ │ ├── array-grouping-stage-3-2.js │ │ │ ├── array-grouping-stage-3.js │ │ │ ├── array-grouping-v2.js │ │ │ ├── array-grouping.js │ │ │ ├── array-includes.js │ │ │ ├── array-is-template-object.js │ │ │ ├── array-last.js │ │ │ ├── array-unique.js │ │ │ ├── async-explicit-resource-management.js │ │ │ ├── async-iteration.js │ │ │ ├── async-iterator-helpers.js │ │ │ ├── change-array-by-copy-stage-4.js │ │ │ ├── change-array-by-copy.js │ │ │ ├── collection-methods.js │ │ │ ├── collection-of-from.js │ │ │ ├── data-view-get-set-uint8-clamped.js │ │ │ ├── decorator-metadata-v2.js │ │ │ ├── decorator-metadata.js │ │ │ ├── decorators.js │ │ │ ├── efficient-64-bit-arithmetic.js │ │ │ ├── error-cause.js │ │ │ ├── explicit-resource-management.js │ │ │ ├── extractors.js │ │ │ ├── float16.js │ │ │ ├── function-demethodize.js │ │ │ ├── function-is-callable-is-constructor.js │ │ │ ├── function-un-this.js │ │ │ ├── global-this.js │ │ │ ├── index.js │ │ │ ├── is-error.js │ │ │ ├── iterator-chunking-v2.js │ │ │ ├── iterator-chunking.js │ │ │ ├── iterator-helpers-stage-3-2.js │ │ │ ├── iterator-helpers-stage-3.js │ │ │ ├── iterator-helpers.js │ │ │ ├── iterator-range.js │ │ │ ├── iterator-sequencing.js │ │ │ ├── joint-iteration.js │ │ │ ├── json-parse-with-source.js │ │ │ ├── keys-composition.js │ │ │ ├── map-update-or-insert.js │ │ │ ├── map-upsert-stage-2.js │ │ │ ├── map-upsert-v4.js │ │ │ ├── map-upsert.js │ │ │ ├── math-clamp-v2.js │ │ │ ├── math-clamp.js │ │ │ ├── math-extensions.js │ │ │ ├── math-signbit.js │ │ │ ├── math-sum.js │ │ │ ├── number-from-string.js │ │ │ ├── number-range.js │ │ │ ├── object-from-entries.js │ │ │ ├── object-getownpropertydescriptors.js │ │ │ ├── object-iteration.js │ │ │ ├── object-values-entries.js │ │ │ ├── observable.js │ │ │ ├── pattern-matching-v2.js │ │ │ ├── pattern-matching.js │ │ │ ├── promise-all-settled.js │ │ │ ├── promise-any.js │ │ │ ├── promise-finally.js │ │ │ ├── promise-try.js │ │ │ ├── promise-with-resolvers.js │ │ │ ├── reflect-metadata.js │ │ │ ├── regexp-dotall-flag.js │ │ │ ├── regexp-escaping.js │ │ │ ├── regexp-named-groups.js │ │ │ ├── relative-indexing-method.js │ │ │ ├── seeded-random.js │ │ │ ├── set-methods-v2.js │ │ │ ├── set-methods.js │ │ │ ├── string-at.js │ │ │ ├── string-code-points.js │ │ │ ├── string-cooked.js │ │ │ ├── string-dedent.js │ │ │ ├── string-left-right-trim.js │ │ │ ├── string-match-all.js │ │ │ ├── string-padding.js │ │ │ ├── string-replace-all-stage-4.js │ │ │ ├── string-replace-all.js │ │ │ ├── symbol-description.js │ │ │ ├── symbol-predicates-v2.js │ │ │ ├── symbol-predicates.js │ │ │ ├── url.js │ │ │ ├── using-statement.js │ │ │ ├── well-formed-stringify.js │ │ │ └── well-formed-unicode-strings.js │ │ ├── stable/ │ │ │ ├── README.md │ │ │ ├── aggregate-error.js │ │ │ ├── array/ │ │ │ │ ├── at.js │ │ │ │ ├── concat.js │ │ │ │ ├── copy-within.js │ │ │ │ ├── entries.js │ │ │ │ ├── every.js │ │ │ │ ├── fill.js │ │ │ │ ├── filter.js │ │ │ │ ├── find-index.js │ │ │ │ ├── find-last-index.js │ │ │ │ ├── find-last.js │ │ │ │ ├── find.js │ │ │ │ ├── flat-map.js │ │ │ │ ├── flat.js │ │ │ │ ├── for-each.js │ │ │ │ ├── from-async.js │ │ │ │ ├── from.js │ │ │ │ ├── includes.js │ │ │ │ ├── index-of.js │ │ │ │ ├── index.js │ │ │ │ ├── is-array.js │ │ │ │ ├── iterator.js │ │ │ │ ├── join.js │ │ │ │ ├── keys.js │ │ │ │ ├── last-index-of.js │ │ │ │ ├── map.js │ │ │ │ ├── of.js │ │ │ │ ├── push.js │ │ │ │ ├── reduce-right.js │ │ │ │ ├── reduce.js │ │ │ │ ├── reverse.js │ │ │ │ ├── slice.js │ │ │ │ ├── some.js │ │ │ │ ├── sort.js │ │ │ │ ├── splice.js │ │ │ │ ├── to-reversed.js │ │ │ │ ├── to-sorted.js │ │ │ │ ├── to-spliced.js │ │ │ │ ├── unshift.js │ │ │ │ ├── values.js │ │ │ │ ├── virtual/ │ │ │ │ │ ├── at.js │ │ │ │ │ ├── concat.js │ │ │ │ │ ├── copy-within.js │ │ │ │ │ ├── entries.js │ │ │ │ │ ├── every.js │ │ │ │ │ ├── fill.js │ │ │ │ │ ├── filter.js │ │ │ │ │ ├── find-index.js │ │ │ │ │ ├── find-last-index.js │ │ │ │ │ ├── find-last.js │ │ │ │ │ ├── find.js │ │ │ │ │ ├── flat-map.js │ │ │ │ │ ├── flat.js │ │ │ │ │ ├── for-each.js │ │ │ │ │ ├── includes.js │ │ │ │ │ ├── index-of.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── iterator.js │ │ │ │ │ ├── join.js │ │ │ │ │ ├── keys.js │ │ │ │ │ ├── last-index-of.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── push.js │ │ │ │ │ ├── reduce-right.js │ │ │ │ │ ├── reduce.js │ │ │ │ │ ├── reverse.js │ │ │ │ │ ├── slice.js │ │ │ │ │ ├── some.js │ │ │ │ │ ├── sort.js │ │ │ │ │ ├── splice.js │ │ │ │ │ ├── to-reversed.js │ │ │ │ │ ├── to-sorted.js │ │ │ │ │ ├── to-spliced.js │ │ │ │ │ ├── unshift.js │ │ │ │ │ ├── values.js │ │ │ │ │ └── with.js │ │ │ │ └── with.js │ │ │ ├── array-buffer/ │ │ │ │ ├── constructor.js │ │ │ │ ├── detached.js │ │ │ │ ├── index.js │ │ │ │ ├── is-view.js │ │ │ │ ├── slice.js │ │ │ │ ├── transfer-to-fixed-length.js │ │ │ │ └── transfer.js │ │ │ ├── async-disposable-stack/ │ │ │ │ ├── constructor.js │ │ │ │ └── index.js │ │ │ ├── async-iterator/ │ │ │ │ ├── async-dispose.js │ │ │ │ └── index.js │ │ │ ├── atob.js │ │ │ ├── btoa.js │ │ │ ├── clear-immediate.js │ │ │ ├── data-view/ │ │ │ │ ├── get-float16.js │ │ │ │ ├── index.js │ │ │ │ └── set-float16.js │ │ │ ├── date/ │ │ │ │ ├── get-year.js │ │ │ │ ├── index.js │ │ │ │ ├── now.js │ │ │ │ ├── set-year.js │ │ │ │ ├── to-gmt-string.js │ │ │ │ ├── to-iso-string.js │ │ │ │ ├── to-json.js │ │ │ │ ├── to-primitive.js │ │ │ │ └── to-string.js │ │ │ ├── disposable-stack/ │ │ │ │ ├── constructor.js │ │ │ │ └── index.js │ │ │ ├── dom-collections/ │ │ │ │ ├── for-each.js │ │ │ │ ├── index.js │ │ │ │ └── iterator.js │ │ │ ├── dom-exception/ │ │ │ │ ├── constructor.js │ │ │ │ ├── index.js │ │ │ │ └── to-string-tag.js │ │ │ ├── error/ │ │ │ │ ├── constructor.js │ │ │ │ ├── index.js │ │ │ │ ├── is-error.js │ │ │ │ └── to-string.js │ │ │ ├── escape.js │ │ │ ├── function/ │ │ │ │ ├── bind.js │ │ │ │ ├── has-instance.js │ │ │ │ ├── index.js │ │ │ │ ├── name.js │ │ │ │ └── virtual/ │ │ │ │ ├── bind.js │ │ │ │ └── index.js │ │ │ ├── get-iterator-method.js │ │ │ ├── get-iterator.js │ │ │ ├── global-this.js │ │ │ ├── instance/ │ │ │ │ ├── at.js │ │ │ │ ├── bind.js │ │ │ │ ├── code-point-at.js │ │ │ │ ├── concat.js │ │ │ │ ├── copy-within.js │ │ │ │ ├── ends-with.js │ │ │ │ ├── entries.js │ │ │ │ ├── every.js │ │ │ │ ├── fill.js │ │ │ │ ├── filter.js │ │ │ │ ├── find-index.js │ │ │ │ ├── find-last-index.js │ │ │ │ ├── find-last.js │ │ │ │ ├── find.js │ │ │ │ ├── flags.js │ │ │ │ ├── flat-map.js │ │ │ │ ├── flat.js │ │ │ │ ├── for-each.js │ │ │ │ ├── includes.js │ │ │ │ ├── index-of.js │ │ │ │ ├── is-well-formed.js │ │ │ │ ├── keys.js │ │ │ │ ├── last-index-of.js │ │ │ │ ├── map.js │ │ │ │ ├── match-all.js │ │ │ │ ├── pad-end.js │ │ │ │ ├── pad-start.js │ │ │ │ ├── push.js │ │ │ │ ├── reduce-right.js │ │ │ │ ├── reduce.js │ │ │ │ ├── repeat.js │ │ │ │ ├── replace-all.js │ │ │ │ ├── reverse.js │ │ │ │ ├── slice.js │ │ │ │ ├── some.js │ │ │ │ ├── sort.js │ │ │ │ ├── splice.js │ │ │ │ ├── starts-with.js │ │ │ │ ├── to-reversed.js │ │ │ │ ├── to-sorted.js │ │ │ │ ├── to-spliced.js │ │ │ │ ├── to-well-formed.js │ │ │ │ ├── trim-end.js │ │ │ │ ├── trim-left.js │ │ │ │ ├── trim-right.js │ │ │ │ ├── trim-start.js │ │ │ │ ├── trim.js │ │ │ │ ├── unshift.js │ │ │ │ ├── values.js │ │ │ │ └── with.js │ │ │ ├── is-iterable.js │ │ │ ├── iterator/ │ │ │ │ ├── concat.js │ │ │ │ ├── dispose.js │ │ │ │ ├── drop.js │ │ │ │ ├── every.js │ │ │ │ ├── filter.js │ │ │ │ ├── find.js │ │ │ │ ├── flat-map.js │ │ │ │ ├── for-each.js │ │ │ │ ├── from.js │ │ │ │ ├── index.js │ │ │ │ ├── map.js │ │ │ │ ├── reduce.js │ │ │ │ ├── some.js │ │ │ │ ├── take.js │ │ │ │ └── to-array.js │ │ │ ├── json/ │ │ │ │ ├── index.js │ │ │ │ ├── is-raw-json.js │ │ │ │ ├── parse.js │ │ │ │ ├── raw-json.js │ │ │ │ ├── stringify.js │ │ │ │ └── to-string-tag.js │ │ │ ├── map/ │ │ │ │ ├── get-or-insert-computed.js │ │ │ │ ├── get-or-insert.js │ │ │ │ ├── group-by.js │ │ │ │ └── index.js │ │ │ ├── math/ │ │ │ │ ├── acosh.js │ │ │ │ ├── asinh.js │ │ │ │ ├── atanh.js │ │ │ │ ├── cbrt.js │ │ │ │ ├── clz32.js │ │ │ │ ├── cosh.js │ │ │ │ ├── expm1.js │ │ │ │ ├── f16round.js │ │ │ │ ├── fround.js │ │ │ │ ├── hypot.js │ │ │ │ ├── imul.js │ │ │ │ ├── index.js │ │ │ │ ├── log10.js │ │ │ │ ├── log1p.js │ │ │ │ ├── log2.js │ │ │ │ ├── sign.js │ │ │ │ ├── sinh.js │ │ │ │ ├── sum-precise.js │ │ │ │ ├── tanh.js │ │ │ │ ├── to-string-tag.js │ │ │ │ └── trunc.js │ │ │ ├── number/ │ │ │ │ ├── constructor.js │ │ │ │ ├── epsilon.js │ │ │ │ ├── index.js │ │ │ │ ├── is-finite.js │ │ │ │ ├── is-integer.js │ │ │ │ ├── is-nan.js │ │ │ │ ├── is-safe-integer.js │ │ │ │ ├── max-safe-integer.js │ │ │ │ ├── min-safe-integer.js │ │ │ │ ├── parse-float.js │ │ │ │ ├── parse-int.js │ │ │ │ ├── to-exponential.js │ │ │ │ ├── to-fixed.js │ │ │ │ ├── to-precision.js │ │ │ │ └── virtual/ │ │ │ │ ├── index.js │ │ │ │ ├── to-exponential.js │ │ │ │ ├── to-fixed.js │ │ │ │ └── to-precision.js │ │ │ ├── object/ │ │ │ │ ├── assign.js │ │ │ │ ├── create.js │ │ │ │ ├── define-getter.js │ │ │ │ ├── define-properties.js │ │ │ │ ├── define-property.js │ │ │ │ ├── define-setter.js │ │ │ │ ├── entries.js │ │ │ │ ├── freeze.js │ │ │ │ ├── from-entries.js │ │ │ │ ├── get-own-property-descriptor.js │ │ │ │ ├── get-own-property-descriptors.js │ │ │ │ ├── get-own-property-names.js │ │ │ │ ├── get-own-property-symbols.js │ │ │ │ ├── get-prototype-of.js │ │ │ │ ├── group-by.js │ │ │ │ ├── has-own.js │ │ │ │ ├── index.js │ │ │ │ ├── is-extensible.js │ │ │ │ ├── is-frozen.js │ │ │ │ ├── is-sealed.js │ │ │ │ ├── is.js │ │ │ │ ├── keys.js │ │ │ │ ├── lookup-getter.js │ │ │ │ ├── lookup-setter.js │ │ │ │ ├── prevent-extensions.js │ │ │ │ ├── proto.js │ │ │ │ ├── seal.js │ │ │ │ ├── set-prototype-of.js │ │ │ │ ├── to-string.js │ │ │ │ └── values.js │ │ │ ├── parse-float.js │ │ │ ├── parse-int.js │ │ │ ├── promise/ │ │ │ │ ├── all-settled.js │ │ │ │ ├── any.js │ │ │ │ ├── finally.js │ │ │ │ ├── index.js │ │ │ │ ├── try.js │ │ │ │ └── with-resolvers.js │ │ │ ├── queue-microtask.js │ │ │ ├── reflect/ │ │ │ │ ├── apply.js │ │ │ │ ├── construct.js │ │ │ │ ├── define-property.js │ │ │ │ ├── delete-property.js │ │ │ │ ├── get-own-property-descriptor.js │ │ │ │ ├── get-prototype-of.js │ │ │ │ ├── get.js │ │ │ │ ├── has.js │ │ │ │ ├── index.js │ │ │ │ ├── is-extensible.js │ │ │ │ ├── own-keys.js │ │ │ │ ├── prevent-extensions.js │ │ │ │ ├── set-prototype-of.js │ │ │ │ ├── set.js │ │ │ │ └── to-string-tag.js │ │ │ ├── regexp/ │ │ │ │ ├── constructor.js │ │ │ │ ├── dot-all.js │ │ │ │ ├── escape.js │ │ │ │ ├── flags.js │ │ │ │ ├── index.js │ │ │ │ ├── match.js │ │ │ │ ├── replace.js │ │ │ │ ├── search.js │ │ │ │ ├── split.js │ │ │ │ ├── sticky.js │ │ │ │ ├── test.js │ │ │ │ └── to-string.js │ │ │ ├── self.js │ │ │ ├── set/ │ │ │ │ ├── difference.js │ │ │ │ ├── index.js │ │ │ │ ├── intersection.js │ │ │ │ ├── is-disjoint-from.js │ │ │ │ ├── is-subset-of.js │ │ │ │ ├── is-superset-of.js │ │ │ │ ├── symmetric-difference.js │ │ │ │ └── union.js │ │ │ ├── set-immediate.js │ │ │ ├── set-interval.js │ │ │ ├── set-timeout.js │ │ │ ├── string/ │ │ │ │ ├── anchor.js │ │ │ │ ├── at.js │ │ │ │ ├── big.js │ │ │ │ ├── blink.js │ │ │ │ ├── bold.js │ │ │ │ ├── code-point-at.js │ │ │ │ ├── ends-with.js │ │ │ │ ├── fixed.js │ │ │ │ ├── fontcolor.js │ │ │ │ ├── fontsize.js │ │ │ │ ├── from-code-point.js │ │ │ │ ├── includes.js │ │ │ │ ├── index.js │ │ │ │ ├── is-well-formed.js │ │ │ │ ├── italics.js │ │ │ │ ├── iterator.js │ │ │ │ ├── link.js │ │ │ │ ├── match-all.js │ │ │ │ ├── match.js │ │ │ │ ├── pad-end.js │ │ │ │ ├── pad-start.js │ │ │ │ ├── raw.js │ │ │ │ ├── repeat.js │ │ │ │ ├── replace-all.js │ │ │ │ ├── replace.js │ │ │ │ ├── search.js │ │ │ │ ├── small.js │ │ │ │ ├── split.js │ │ │ │ ├── starts-with.js │ │ │ │ ├── strike.js │ │ │ │ ├── sub.js │ │ │ │ ├── substr.js │ │ │ │ ├── sup.js │ │ │ │ ├── to-well-formed.js │ │ │ │ ├── trim-end.js │ │ │ │ ├── trim-left.js │ │ │ │ ├── trim-right.js │ │ │ │ ├── trim-start.js │ │ │ │ ├── trim.js │ │ │ │ └── virtual/ │ │ │ │ ├── anchor.js │ │ │ │ ├── at.js │ │ │ │ ├── big.js │ │ │ │ ├── blink.js │ │ │ │ ├── bold.js │ │ │ │ ├── code-point-at.js │ │ │ │ ├── ends-with.js │ │ │ │ ├── fixed.js │ │ │ │ ├── fontcolor.js │ │ │ │ ├── fontsize.js │ │ │ │ ├── includes.js │ │ │ │ ├── index.js │ │ │ │ ├── is-well-formed.js │ │ │ │ ├── italics.js │ │ │ │ ├── iterator.js │ │ │ │ ├── link.js │ │ │ │ ├── match-all.js │ │ │ │ ├── pad-end.js │ │ │ │ ├── pad-start.js │ │ │ │ ├── repeat.js │ │ │ │ ├── replace-all.js │ │ │ │ ├── small.js │ │ │ │ ├── starts-with.js │ │ │ │ ├── strike.js │ │ │ │ ├── sub.js │ │ │ │ ├── substr.js │ │ │ │ ├── sup.js │ │ │ │ ├── to-well-formed.js │ │ │ │ ├── trim-end.js │ │ │ │ ├── trim-left.js │ │ │ │ ├── trim-right.js │ │ │ │ ├── trim-start.js │ │ │ │ └── trim.js │ │ │ ├── structured-clone.js │ │ │ ├── suppressed-error.js │ │ │ ├── symbol/ │ │ │ │ ├── async-dispose.js │ │ │ │ ├── async-iterator.js │ │ │ │ ├── description.js │ │ │ │ ├── dispose.js │ │ │ │ ├── for.js │ │ │ │ ├── has-instance.js │ │ │ │ ├── index.js │ │ │ │ ├── is-concat-spreadable.js │ │ │ │ ├── iterator.js │ │ │ │ ├── key-for.js │ │ │ │ ├── match-all.js │ │ │ │ ├── match.js │ │ │ │ ├── replace.js │ │ │ │ ├── search.js │ │ │ │ ├── species.js │ │ │ │ ├── split.js │ │ │ │ ├── to-primitive.js │ │ │ │ ├── to-string-tag.js │ │ │ │ └── unscopables.js │ │ │ ├── typed-array/ │ │ │ │ ├── at.js │ │ │ │ ├── copy-within.js │ │ │ │ ├── entries.js │ │ │ │ ├── every.js │ │ │ │ ├── fill.js │ │ │ │ ├── filter.js │ │ │ │ ├── find-index.js │ │ │ │ ├── find-last-index.js │ │ │ │ ├── find-last.js │ │ │ │ ├── find.js │ │ │ │ ├── float32-array.js │ │ │ │ ├── float64-array.js │ │ │ │ ├── for-each.js │ │ │ │ ├── from-base64.js │ │ │ │ ├── from-hex.js │ │ │ │ ├── from.js │ │ │ │ ├── includes.js │ │ │ │ ├── index-of.js │ │ │ │ ├── index.js │ │ │ │ ├── int16-array.js │ │ │ │ ├── int32-array.js │ │ │ │ ├── int8-array.js │ │ │ │ ├── iterator.js │ │ │ │ ├── join.js │ │ │ │ ├── keys.js │ │ │ │ ├── last-index-of.js │ │ │ │ ├── map.js │ │ │ │ ├── methods.js │ │ │ │ ├── of.js │ │ │ │ ├── reduce-right.js │ │ │ │ ├── reduce.js │ │ │ │ ├── reverse.js │ │ │ │ ├── set-from-base64.js │ │ │ │ ├── set-from-hex.js │ │ │ │ ├── set.js │ │ │ │ ├── slice.js │ │ │ │ ├── some.js │ │ │ │ ├── sort.js │ │ │ │ ├── subarray.js │ │ │ │ ├── to-base64.js │ │ │ │ ├── to-hex.js │ │ │ │ ├── to-locale-string.js │ │ │ │ ├── to-reversed.js │ │ │ │ ├── to-sorted.js │ │ │ │ ├── to-string.js │ │ │ │ ├── uint16-array.js │ │ │ │ ├── uint32-array.js │ │ │ │ ├── uint8-array.js │ │ │ │ ├── uint8-clamped-array.js │ │ │ │ ├── values.js │ │ │ │ └── with.js │ │ │ ├── unescape.js │ │ │ ├── url/ │ │ │ │ ├── can-parse.js │ │ │ │ ├── index.js │ │ │ │ ├── parse.js │ │ │ │ └── to-json.js │ │ │ ├── url-search-params/ │ │ │ │ └── index.js │ │ │ ├── weak-map/ │ │ │ │ ├── get-or-insert-computed.js │ │ │ │ ├── get-or-insert.js │ │ │ │ └── index.js │ │ │ └── weak-set/ │ │ │ └── index.js │ │ ├── stage/ │ │ │ ├── 0.js │ │ │ ├── 1.js │ │ │ ├── 2.7.js │ │ │ ├── 2.js │ │ │ ├── 3.js │ │ │ ├── 4.js │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── pre.js │ │ └── web/ │ │ ├── README.md │ │ ├── dom-collections.js │ │ ├── dom-exception.js │ │ ├── immediate.js │ │ ├── index.js │ │ ├── queue-microtask.js │ │ ├── structured-clone.js │ │ ├── timers.js │ │ ├── url-search-params.js │ │ └── url.js │ ├── core-js-builder/ │ │ ├── .npmignore │ │ ├── README.md │ │ ├── config.js │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── core-js-bundle/ │ │ ├── .npmignore │ │ ├── README.md │ │ └── package.json │ ├── core-js-compat/ │ │ ├── .npmignore │ │ ├── README.md │ │ ├── compat.d.ts │ │ ├── compat.js │ │ ├── get-modules-list-for-target-version.d.ts │ │ ├── get-modules-list-for-target-version.js │ │ ├── helpers.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ ├── shared.d.ts │ │ ├── src/ │ │ │ ├── data.mjs │ │ │ ├── external.mjs │ │ │ ├── mapping.mjs │ │ │ └── modules-by-versions.mjs │ │ └── targets-parser.js │ └── core-js-pure/ │ ├── .npmignore │ ├── README.md │ ├── override/ │ │ ├── internals/ │ │ │ ├── a-map.js │ │ │ ├── a-set.js │ │ │ ├── a-weak-map.js │ │ │ ├── a-weak-set.js │ │ │ ├── add-to-unscopables.js │ │ │ ├── array-buffer-byte-length.js │ │ │ ├── array-buffer-is-detached.js │ │ │ ├── array-buffer-transfer.js │ │ │ ├── array-buffer-view-core.js │ │ │ ├── array-buffer.js │ │ │ ├── collection.js │ │ │ ├── define-built-in-accessor.js │ │ │ ├── define-built-in.js │ │ │ ├── define-built-ins.js │ │ │ ├── entry-unbind.js │ │ │ ├── entry-virtual.js │ │ │ ├── export.js │ │ │ ├── fix-regexp-well-known-symbol-logic.js │ │ │ ├── get-built-in-prototype-method.js │ │ │ ├── get-built-in.js │ │ │ ├── is-pure.js │ │ │ ├── make-built-in.js │ │ │ ├── map-helpers.js │ │ │ ├── map-iterate.js │ │ │ ├── path.js │ │ │ ├── regexp-exec.js │ │ │ ├── regexp-sticky-helpers.js │ │ │ ├── regexp-unsupported-dot-all.js │ │ │ ├── set-helpers.js │ │ │ ├── set-iterate.js │ │ │ ├── set-method-accept-set-like.js │ │ │ ├── set-size.js │ │ │ ├── set-to-string-tag.js │ │ │ ├── to-offset.js │ │ │ ├── typed-array-constructor.js │ │ │ ├── typed-array-constructors-require-wrappers.js │ │ │ ├── typed-array-from-same-type-and-list.js │ │ │ ├── typed-array-from.js │ │ │ ├── weak-map-helpers.js │ │ │ └── weak-set-helpers.js │ │ └── modules/ │ │ ├── es.array-buffer.constructor.js │ │ ├── es.array-buffer.detached.js │ │ ├── es.array-buffer.is-view.js │ │ ├── es.array-buffer.slice.js │ │ ├── es.array-buffer.transfer-to-fixed-length.js │ │ ├── es.array-buffer.transfer.js │ │ ├── es.data-view.get-float16.js │ │ ├── es.data-view.js │ │ ├── es.data-view.set-float16.js │ │ ├── es.date.to-json.js │ │ ├── es.date.to-primitive.js │ │ ├── es.date.to-string.js │ │ ├── es.error.to-string.js │ │ ├── es.function.name.js │ │ ├── es.math.to-string-tag.js │ │ ├── es.object.proto.js │ │ ├── es.object.to-string.js │ │ ├── es.reflect.to-string-tag.js │ │ ├── es.regexp.constructor.js │ │ ├── es.regexp.dot-all.js │ │ ├── es.regexp.exec.js │ │ ├── es.regexp.flags.js │ │ ├── es.regexp.sticky.js │ │ ├── es.regexp.test.js │ │ ├── es.regexp.to-string.js │ │ ├── es.string.match.js │ │ ├── es.string.replace.js │ │ ├── es.string.search.js │ │ ├── es.string.split.js │ │ ├── es.symbol.async-dispose.js │ │ ├── es.symbol.description.js │ │ ├── es.symbol.dispose.js │ │ ├── es.typed-array.at.js │ │ ├── es.typed-array.copy-within.js │ │ ├── es.typed-array.every.js │ │ ├── es.typed-array.fill.js │ │ ├── es.typed-array.filter.js │ │ ├── es.typed-array.find-index.js │ │ ├── es.typed-array.find-last-index.js │ │ ├── es.typed-array.find-last.js │ │ ├── es.typed-array.find.js │ │ ├── es.typed-array.float32-array.js │ │ ├── es.typed-array.float64-array.js │ │ ├── es.typed-array.for-each.js │ │ ├── es.typed-array.from.js │ │ ├── es.typed-array.includes.js │ │ ├── es.typed-array.index-of.js │ │ ├── es.typed-array.int16-array.js │ │ ├── es.typed-array.int32-array.js │ │ ├── es.typed-array.int8-array.js │ │ ├── es.typed-array.iterator.js │ │ ├── es.typed-array.join.js │ │ ├── es.typed-array.last-index-of.js │ │ ├── es.typed-array.map.js │ │ ├── es.typed-array.of.js │ │ ├── es.typed-array.reduce-right.js │ │ ├── es.typed-array.reduce.js │ │ ├── es.typed-array.reverse.js │ │ ├── es.typed-array.set.js │ │ ├── es.typed-array.slice.js │ │ ├── es.typed-array.some.js │ │ ├── es.typed-array.sort.js │ │ ├── es.typed-array.subarray.js │ │ ├── es.typed-array.to-locale-string.js │ │ ├── es.typed-array.to-reversed.js │ │ ├── es.typed-array.to-sorted.js │ │ ├── es.typed-array.to-string.js │ │ ├── es.typed-array.uint16-array.js │ │ ├── es.typed-array.uint32-array.js │ │ ├── es.typed-array.uint8-array.js │ │ ├── es.typed-array.uint8-clamped-array.js │ │ ├── es.typed-array.with.js │ │ ├── es.uint8-array.from-base64.js │ │ ├── es.uint8-array.from-hex.js │ │ ├── es.uint8-array.set-from-base64.js │ │ ├── es.uint8-array.set-from-hex.js │ │ ├── es.uint8-array.to-base64.js │ │ ├── es.uint8-array.to-hex.js │ │ ├── esnext.array-buffer.detached.js │ │ ├── esnext.array-buffer.transfer-to-fixed-length.js │ │ ├── esnext.array-buffer.transfer.js │ │ ├── esnext.array.last-index.js │ │ ├── esnext.array.last-item.js │ │ ├── esnext.data-view.get-float16.js │ │ ├── esnext.data-view.get-uint8-clamped.js │ │ ├── esnext.data-view.set-float16.js │ │ ├── esnext.data-view.set-uint8-clamped.js │ │ ├── esnext.typed-array.at.js │ │ ├── esnext.typed-array.filter-out.js │ │ ├── esnext.typed-array.filter-reject.js │ │ ├── esnext.typed-array.find-last-index.js │ │ ├── esnext.typed-array.find-last.js │ │ ├── esnext.typed-array.from-async.js │ │ ├── esnext.typed-array.group-by.js │ │ ├── esnext.typed-array.to-spliced.js │ │ ├── esnext.typed-array.unique-by.js │ │ ├── esnext.uint8-array.from-base64.js │ │ ├── esnext.uint8-array.from-hex.js │ │ ├── esnext.uint8-array.set-from-base64.js │ │ ├── esnext.uint8-array.set-from-hex.js │ │ ├── esnext.uint8-array.to-base64.js │ │ ├── esnext.uint8-array.to-hex.js │ │ ├── web.dom-collections.for-each.js │ │ ├── web.dom-collections.iterator.js │ │ ├── web.self.js │ │ ├── web.url-search-params.delete.js │ │ ├── web.url-search-params.has.js │ │ ├── web.url-search-params.size.js │ │ └── web.url.to-json.js │ └── package.json ├── scripts/ │ ├── build-compat/ │ │ ├── data.mjs │ │ ├── entries.mjs │ │ ├── index.mjs │ │ └── modules-by-versions.mjs │ ├── build-indexes.mjs │ ├── bundle-package/ │ │ ├── bundle-package.mjs │ │ └── package.json │ ├── bundle-tests/ │ │ ├── bundle-tests.mjs │ │ ├── package.json │ │ └── webpack.config.js │ ├── check-actions/ │ │ ├── check-actions.mjs │ │ └── package.json │ ├── check-compat-data-mapping.mjs │ ├── check-dependencies/ │ │ ├── check-dependencies.mjs │ │ └── package.json │ ├── check-unused-modules.mjs │ ├── clean-and-copy.mjs │ ├── downloads-by-versions.mjs │ ├── prepare-monorepo.mjs │ ├── prepare.mjs │ ├── update-version.mjs │ ├── usage/ │ │ ├── package.json │ │ └── usage.mjs │ └── zxi.mjs ├── tests/ │ ├── builder/ │ │ └── builder.mjs │ ├── codespell/ │ │ └── runner.mjs │ ├── compat/ │ │ ├── browsers-runner.js │ │ ├── bun-runner.js │ │ ├── common-runner.js │ │ ├── deno-runner.mjs │ │ ├── hermes-adapter.mjs │ │ ├── hermes-runner.js │ │ ├── index.html │ │ ├── metadata.json │ │ ├── node-runner.js │ │ ├── rhino-adapter.mjs │ │ ├── rhino-runner.js │ │ └── tests.js │ ├── compat-data/ │ │ ├── index.mjs │ │ ├── modules-by-versions.mjs │ │ └── tests-coverage.mjs │ ├── compat-tools/ │ │ ├── compat.mjs │ │ ├── get-modules-list-for-target-version.mjs │ │ ├── index.mjs │ │ └── targets-parser.mjs │ ├── entries/ │ │ ├── content.mjs │ │ ├── index.mjs │ │ └── unit.mjs │ ├── eslint/ │ │ ├── eslint.config.js │ │ ├── package.json │ │ └── runner.mjs │ ├── helpers/ │ │ ├── constants.js │ │ ├── helpers.js │ │ └── qunit-helpers.js │ ├── observables/ │ │ ├── adapter.mjs │ │ ├── package.json │ │ └── runner.mjs │ ├── promises/ │ │ ├── adapter.js │ │ ├── package.json │ │ └── runner.mjs │ ├── publint/ │ │ ├── package.json │ │ └── runner.mjs │ ├── test262/ │ │ ├── package.json │ │ ├── preprocessor.js │ │ └── runner.mjs │ ├── type-definitions/ │ │ ├── builder.ts │ │ ├── compat.ts │ │ ├── package.json │ │ ├── runner.mjs │ │ └── tsconfig.json │ ├── unit-browser/ │ │ ├── global.html │ │ └── pure.html │ ├── unit-bun/ │ │ ├── package.json │ │ └── runner.mjs │ ├── unit-global/ │ │ ├── es.aggregate-error.js │ │ ├── es.array-buffer.constructor.js │ │ ├── es.array-buffer.detached.js │ │ ├── es.array-buffer.is-view.js │ │ ├── es.array-buffer.slice.js │ │ ├── es.array-buffer.transfer-to-fixed-length.js │ │ ├── es.array-buffer.transfer.js │ │ ├── es.array.at.js │ │ ├── es.array.concat.js │ │ ├── es.array.copy-within.js │ │ ├── es.array.every.js │ │ ├── es.array.fill.js │ │ ├── es.array.filter.js │ │ ├── es.array.find-index.js │ │ ├── es.array.find-last-index.js │ │ ├── es.array.find-last.js │ │ ├── es.array.find.js │ │ ├── es.array.flat-map.js │ │ ├── es.array.flat.js │ │ ├── es.array.for-each.js │ │ ├── es.array.from-async.js │ │ ├── es.array.from.js │ │ ├── es.array.includes.js │ │ ├── es.array.index-of.js │ │ ├── es.array.is-array.js │ │ ├── es.array.iterator.js │ │ ├── es.array.join.js │ │ ├── es.array.last-index-of.js │ │ ├── es.array.map.js │ │ ├── es.array.of.js │ │ ├── es.array.push.js │ │ ├── es.array.reduce-right.js │ │ ├── es.array.reduce.js │ │ ├── es.array.reverse.js │ │ ├── es.array.slice.js │ │ ├── es.array.some.js │ │ ├── es.array.sort.js │ │ ├── es.array.splice.js │ │ ├── es.array.to-reversed.js │ │ ├── es.array.to-sorted.js │ │ ├── es.array.to-spliced.js │ │ ├── es.array.unshift.js │ │ ├── es.array.with.js │ │ ├── es.async-disposable-stack.constructor.js │ │ ├── es.async-iterator.async-dispose.js │ │ ├── es.data-view.js │ │ ├── es.data-view.set-float16.js │ │ ├── es.date.get-year.js │ │ ├── es.date.now.js │ │ ├── es.date.set-year.js │ │ ├── es.date.to-gmt-string.js │ │ ├── es.date.to-iso-string.js │ │ ├── es.date.to-json.js │ │ ├── es.date.to-primitive.js │ │ ├── es.date.to-string.js │ │ ├── es.disposable-stack.constructor.js │ │ ├── es.error.cause.js │ │ ├── es.error.is-error.js │ │ ├── es.error.to-string.js │ │ ├── es.escape.js │ │ ├── es.function.bind.js │ │ ├── es.function.has-instance.js │ │ ├── es.function.name.js │ │ ├── es.global-this.js │ │ ├── es.iterator.concat.js │ │ ├── es.iterator.constructor.js │ │ ├── es.iterator.dispose.js │ │ ├── es.iterator.drop.js │ │ ├── es.iterator.every.js │ │ ├── es.iterator.filter.js │ │ ├── es.iterator.find.js │ │ ├── es.iterator.flat-map.js │ │ ├── es.iterator.for-each.js │ │ ├── es.iterator.from.js │ │ ├── es.iterator.map.js │ │ ├── es.iterator.reduce.js │ │ ├── es.iterator.some.js │ │ ├── es.iterator.take.js │ │ ├── es.iterator.to-array.js │ │ ├── es.json.is-raw-json.js │ │ ├── es.json.parse.js │ │ ├── es.json.raw-json.js │ │ ├── es.json.stringify.js │ │ ├── es.map.get-or-insert-computed.js │ │ ├── es.map.get-or-insert.js │ │ ├── es.map.group-by.js │ │ ├── es.map.js │ │ ├── es.math.acosh.js │ │ ├── es.math.asinh.js │ │ ├── es.math.atanh.js │ │ ├── es.math.cbrt.js │ │ ├── es.math.clz32.js │ │ ├── es.math.cosh.js │ │ ├── es.math.expm1.js │ │ ├── es.math.f16round.js │ │ ├── es.math.fround.js │ │ ├── es.math.hypot.js │ │ ├── es.math.imul.js │ │ ├── es.math.log10.js │ │ ├── es.math.log1p.js │ │ ├── es.math.log2.js │ │ ├── es.math.sign.js │ │ ├── es.math.sinh.js │ │ ├── es.math.sum-precise.js │ │ ├── es.math.tanh.js │ │ ├── es.math.to-string-tag.js │ │ ├── es.math.trunc.js │ │ ├── es.number.constructor.js │ │ ├── es.number.epsilon.js │ │ ├── es.number.is-finite.js │ │ ├── es.number.is-integer.js │ │ ├── es.number.is-nan.js │ │ ├── es.number.is-safe-integer.js │ │ ├── es.number.max-safe-integer.js │ │ ├── es.number.min-safe-integer.js │ │ ├── es.number.parse-float.js │ │ ├── es.number.parse-int.js │ │ ├── es.number.to-exponential.js │ │ ├── es.number.to-fixed.js │ │ ├── es.number.to-precision.js │ │ ├── es.object.assign.js │ │ ├── es.object.create.js │ │ ├── es.object.define-getter.js │ │ ├── es.object.define-properties.js │ │ ├── es.object.define-property.js │ │ ├── es.object.define-setter.js │ │ ├── es.object.entries.js │ │ ├── es.object.freeze.js │ │ ├── es.object.from-entries.js │ │ ├── es.object.get-own-property-descriptor.js │ │ ├── es.object.get-own-property-descriptors.js │ │ ├── es.object.get-own-property-names.js │ │ ├── es.object.get-own-property-symbols.js │ │ ├── es.object.get-prototype-of.js │ │ ├── es.object.group-by.js │ │ ├── es.object.has-own.js │ │ ├── es.object.is-extensible.js │ │ ├── es.object.is-frozen.js │ │ ├── es.object.is-sealed.js │ │ ├── es.object.is.js │ │ ├── es.object.keys.js │ │ ├── es.object.lookup-getter.js │ │ ├── es.object.lookup-setter.js │ │ ├── es.object.prevent-extensions.js │ │ ├── es.object.proto.js │ │ ├── es.object.seal.js │ │ ├── es.object.set-prototype-of.js │ │ ├── es.object.to-string.js │ │ ├── es.object.values.js │ │ ├── es.parse-float.js │ │ ├── es.parse-int.js │ │ ├── es.promise.all-settled.js │ │ ├── es.promise.all.js │ │ ├── es.promise.any.js │ │ ├── es.promise.catch.js │ │ ├── es.promise.constructor.js │ │ ├── es.promise.finally.js │ │ ├── es.promise.race.js │ │ ├── es.promise.reject.js │ │ ├── es.promise.resolve.js │ │ ├── es.promise.try.js │ │ ├── es.promise.with-resolvers.js │ │ ├── es.reflect.apply.js │ │ ├── es.reflect.construct.js │ │ ├── es.reflect.define-property.js │ │ ├── es.reflect.delete-property.js │ │ ├── es.reflect.get-own-property-descriptor.js │ │ ├── es.reflect.get-prototype-of.js │ │ ├── es.reflect.get.js │ │ ├── es.reflect.has.js │ │ ├── es.reflect.is-extensible.js │ │ ├── es.reflect.own-keys.js │ │ ├── es.reflect.prevent-extensions.js │ │ ├── es.reflect.set-prototype-of.js │ │ ├── es.reflect.set.js │ │ ├── es.reflect.to-string-tag.js │ │ ├── es.regexp.constructor.js │ │ ├── es.regexp.dot-all.js │ │ ├── es.regexp.escape.js │ │ ├── es.regexp.exec.js │ │ ├── es.regexp.flags.js │ │ ├── es.regexp.sticky.js │ │ ├── es.regexp.test.js │ │ ├── es.regexp.to-string.js │ │ ├── es.set.difference.js │ │ ├── es.set.intersection.js │ │ ├── es.set.is-disjoint-from.js │ │ ├── es.set.is-subset-of.js │ │ ├── es.set.is-superset-of.js │ │ ├── es.set.js │ │ ├── es.set.symmetric-difference.js │ │ ├── es.set.union.js │ │ ├── es.string.anchor.js │ │ ├── es.string.at-alternative.js │ │ ├── es.string.big.js │ │ ├── es.string.blink.js │ │ ├── es.string.bold.js │ │ ├── es.string.code-point-at.js │ │ ├── es.string.ends-with.js │ │ ├── es.string.fixed.js │ │ ├── es.string.fontcolor.js │ │ ├── es.string.fontsize.js │ │ ├── es.string.from-code-point.js │ │ ├── es.string.includes.js │ │ ├── es.string.is-well-formed.js │ │ ├── es.string.italics.js │ │ ├── es.string.iterator.js │ │ ├── es.string.link.js │ │ ├── es.string.match-all.js │ │ ├── es.string.match.js │ │ ├── es.string.pad-end.js │ │ ├── es.string.pad-start.js │ │ ├── es.string.raw.js │ │ ├── es.string.repeat.js │ │ ├── es.string.replace-all.js │ │ ├── es.string.replace.js │ │ ├── es.string.search.js │ │ ├── es.string.small.js │ │ ├── es.string.split.js │ │ ├── es.string.starts-with.js │ │ ├── es.string.strike.js │ │ ├── es.string.sub.js │ │ ├── es.string.substr.js │ │ ├── es.string.sup.js │ │ ├── es.string.to-well-formed.js │ │ ├── es.string.trim-end.js │ │ ├── es.string.trim-left.js │ │ ├── es.string.trim-right.js │ │ ├── es.string.trim-start.js │ │ ├── es.string.trim.js │ │ ├── es.suppressed-error.constructor.js │ │ ├── es.symbol.async-dispose.js │ │ ├── es.symbol.async-iterator.js │ │ ├── es.symbol.constructor.js │ │ ├── es.symbol.description.js │ │ ├── es.symbol.dispose.js │ │ ├── es.symbol.for.js │ │ ├── es.symbol.key-for.js │ │ ├── es.typed-array.at.js │ │ ├── es.typed-array.constructors.js │ │ ├── es.typed-array.copy-within.js │ │ ├── es.typed-array.every.js │ │ ├── es.typed-array.fill.js │ │ ├── es.typed-array.filter.js │ │ ├── es.typed-array.find-index.js │ │ ├── es.typed-array.find-last-index.js │ │ ├── es.typed-array.find-last.js │ │ ├── es.typed-array.find.js │ │ ├── es.typed-array.for-each.js │ │ ├── es.typed-array.from.js │ │ ├── es.typed-array.includes.js │ │ ├── es.typed-array.index-of.js │ │ ├── es.typed-array.iterator.js │ │ ├── es.typed-array.join.js │ │ ├── es.typed-array.last-index-of.js │ │ ├── es.typed-array.map.js │ │ ├── es.typed-array.of.js │ │ ├── es.typed-array.reduce-right.js │ │ ├── es.typed-array.reduce.js │ │ ├── es.typed-array.reverse.js │ │ ├── es.typed-array.set.js │ │ ├── es.typed-array.slice.js │ │ ├── es.typed-array.some.js │ │ ├── es.typed-array.sort.js │ │ ├── es.typed-array.subarray.js │ │ ├── es.typed-array.to-locale-string.js │ │ ├── es.typed-array.to-reversed.js │ │ ├── es.typed-array.to-sorted.js │ │ ├── es.typed-array.to-string.js │ │ ├── es.typed-array.with.js │ │ ├── es.typed.conversions.float32.js │ │ ├── es.typed.conversions.float64.js │ │ ├── es.typed.conversions.int16.js │ │ ├── es.typed.conversions.int32.js │ │ ├── es.typed.conversions.int8.js │ │ ├── es.typed.conversions.uint16.js │ │ ├── es.typed.conversions.uint32.js │ │ ├── es.typed.conversions.uint8-clamped.js │ │ ├── es.typed.conversions.uint8.js │ │ ├── es.uint8-array.from-base64.js │ │ ├── es.uint8-array.from-hex.js │ │ ├── es.uint8-array.set-from-base64.js │ │ ├── es.uint8-array.set-from-hex.js │ │ ├── es.uint8-array.to-base64.js │ │ ├── es.uint8-array.to-hex.js │ │ ├── es.unescape.js │ │ ├── es.weak-map.get-or-insert-computed.js │ │ ├── es.weak-map.get-or-insert.js │ │ ├── es.weak-map.js │ │ ├── es.weak-set.js │ │ ├── esnext.array.filter-out.js │ │ ├── esnext.array.filter-reject.js │ │ ├── esnext.array.group-by-to-map.js │ │ ├── esnext.array.group-by.js │ │ ├── esnext.array.group-to-map.js │ │ ├── esnext.array.group.js │ │ ├── esnext.array.is-template-object.js │ │ ├── esnext.array.last-index.js │ │ ├── esnext.array.last-item.js │ │ ├── esnext.array.unique-by.js │ │ ├── esnext.async-iterator.as-indexed-pairs.js │ │ ├── esnext.async-iterator.constructor.js │ │ ├── esnext.async-iterator.drop.js │ │ ├── esnext.async-iterator.every.js │ │ ├── esnext.async-iterator.filter.js │ │ ├── esnext.async-iterator.find.js │ │ ├── esnext.async-iterator.flat-map.js │ │ ├── esnext.async-iterator.for-each.js │ │ ├── esnext.async-iterator.from.js │ │ ├── esnext.async-iterator.indexed.js │ │ ├── esnext.async-iterator.map.js │ │ ├── esnext.async-iterator.reduce.js │ │ ├── esnext.async-iterator.some.js │ │ ├── esnext.async-iterator.take.js │ │ ├── esnext.async-iterator.to-array.js │ │ ├── esnext.bigint.range.js │ │ ├── esnext.composite-key.js │ │ ├── esnext.composite-symbol.js │ │ ├── esnext.data-view.set-uint8-clamped.js │ │ ├── esnext.function.demethodize.js │ │ ├── esnext.function.is-callable.js │ │ ├── esnext.function.is-constructor.js │ │ ├── esnext.function.metadata.js │ │ ├── esnext.function.un-this.js │ │ ├── esnext.iterator.as-indexed-pairs.js │ │ ├── esnext.iterator.chunks.js │ │ ├── esnext.iterator.indexed.js │ │ ├── esnext.iterator.range.js │ │ ├── esnext.iterator.sliding.js │ │ ├── esnext.iterator.to-async.js │ │ ├── esnext.iterator.windows.js │ │ ├── esnext.iterator.zip-keyed.js │ │ ├── esnext.iterator.zip.js │ │ ├── esnext.map.delete-all.js │ │ ├── esnext.map.emplace.js │ │ ├── esnext.map.every.js │ │ ├── esnext.map.filter.js │ │ ├── esnext.map.find-key.js │ │ ├── esnext.map.find.js │ │ ├── esnext.map.from.js │ │ ├── esnext.map.includes.js │ │ ├── esnext.map.key-by.js │ │ ├── esnext.map.key-of.js │ │ ├── esnext.map.map-keys.js │ │ ├── esnext.map.map-values.js │ │ ├── esnext.map.merge.js │ │ ├── esnext.map.of.js │ │ ├── esnext.map.reduce.js │ │ ├── esnext.map.some.js │ │ ├── esnext.map.update-or-insert.js │ │ ├── esnext.map.update.js │ │ ├── esnext.map.upsert.js │ │ ├── esnext.math.clamp.js │ │ ├── esnext.math.deg-per-rad.js │ │ ├── esnext.math.degrees.js │ │ ├── esnext.math.fscale.js │ │ ├── esnext.math.iaddh.js │ │ ├── esnext.math.imulh.js │ │ ├── esnext.math.isubh.js │ │ ├── esnext.math.rad-per-deg.js │ │ ├── esnext.math.radians.js │ │ ├── esnext.math.scale.js │ │ ├── esnext.math.seeded-prng.js │ │ ├── esnext.math.signbit.js │ │ ├── esnext.math.umulh.js │ │ ├── esnext.number.clamp.js │ │ ├── esnext.number.from-string.js │ │ ├── esnext.number.range.js │ │ ├── esnext.object.iterate-entries.js │ │ ├── esnext.object.iterate-keys.js │ │ ├── esnext.object.iterate-values.js │ │ ├── esnext.observable.constructor.js │ │ ├── esnext.observable.from.js │ │ ├── esnext.observable.of.js │ │ ├── esnext.reflect.define-metadata.js │ │ ├── esnext.reflect.delete-metadata.js │ │ ├── esnext.reflect.get-metadata-keys.js │ │ ├── esnext.reflect.get-metadata.js │ │ ├── esnext.reflect.get-own-metadata-keys.js │ │ ├── esnext.reflect.get-own-metadata.js │ │ ├── esnext.reflect.has-metadata.js │ │ ├── esnext.reflect.has-own-metadata.js │ │ ├── esnext.reflect.metadata.js │ │ ├── esnext.set.add-all.js │ │ ├── esnext.set.delete-all.js │ │ ├── esnext.set.every.js │ │ ├── esnext.set.filter.js │ │ ├── esnext.set.find.js │ │ ├── esnext.set.from.js │ │ ├── esnext.set.join.js │ │ ├── esnext.set.map.js │ │ ├── esnext.set.of.js │ │ ├── esnext.set.reduce.js │ │ ├── esnext.set.some.js │ │ ├── esnext.string.at.js │ │ ├── esnext.string.code-points.js │ │ ├── esnext.string.cooked.js │ │ ├── esnext.string.dedent.js │ │ ├── esnext.symbol.custom-matcher.js │ │ ├── esnext.symbol.is-registered-symbol.js │ │ ├── esnext.symbol.is-registered.js │ │ ├── esnext.symbol.is-well-known-symbol.js │ │ ├── esnext.symbol.is-well-known.js │ │ ├── esnext.symbol.matcher.js │ │ ├── esnext.symbol.metadata-key.js │ │ ├── esnext.symbol.metadata.js │ │ ├── esnext.symbol.observable.js │ │ ├── esnext.symbol.pattern-match.js │ │ ├── esnext.symbol.replace-all.js │ │ ├── esnext.typed-array.filter-out.js │ │ ├── esnext.typed-array.filter-reject.js │ │ ├── esnext.typed-array.from-async.js │ │ ├── esnext.typed-array.group-by.js │ │ ├── esnext.typed-array.to-spliced.js │ │ ├── esnext.typed-array.unique-by.js │ │ ├── esnext.weak-map.delete-all.js │ │ ├── esnext.weak-map.emplace.js │ │ ├── esnext.weak-map.from.js │ │ ├── esnext.weak-map.of.js │ │ ├── esnext.weak-map.upsert.js │ │ ├── esnext.weak-set.add-all.js │ │ ├── esnext.weak-set.delete-all.js │ │ ├── esnext.weak-set.from.js │ │ ├── esnext.weak-set.of.js │ │ ├── web.atob.js │ │ ├── web.btoa.js │ │ ├── web.dom-collections.for-each.js │ │ ├── web.dom-collections.iterator.js │ │ ├── web.dom-exception.constructor.js │ │ ├── web.queue-microtask.js │ │ ├── web.self.js │ │ ├── web.set-immediate.js │ │ ├── web.set-interval.js │ │ ├── web.set-timeout.js │ │ ├── web.structured-clone.js │ │ ├── web.url-search-params.js │ │ ├── web.url.can-parse.js │ │ ├── web.url.js │ │ └── web.url.parse.js │ ├── unit-karma/ │ │ ├── karma.conf.js │ │ ├── package.json │ │ └── runner.mjs │ ├── unit-node/ │ │ ├── package.json │ │ └── runner.mjs │ ├── unit-pure/ │ │ ├── es.aggregate-error.js │ │ ├── es.array.at.js │ │ ├── es.array.concat.js │ │ ├── es.array.copy-within.js │ │ ├── es.array.every.js │ │ ├── es.array.fill.js │ │ ├── es.array.filter.js │ │ ├── es.array.find-index.js │ │ ├── es.array.find-last-index.js │ │ ├── es.array.find-last.js │ │ ├── es.array.find.js │ │ ├── es.array.flat-map.js │ │ ├── es.array.flat.js │ │ ├── es.array.for-each.js │ │ ├── es.array.from-async.js │ │ ├── es.array.from.js │ │ ├── es.array.includes.js │ │ ├── es.array.index-of.js │ │ ├── es.array.is-array.js │ │ ├── es.array.iterator.js │ │ ├── es.array.join.js │ │ ├── es.array.last-index-of.js │ │ ├── es.array.map.js │ │ ├── es.array.of.js │ │ ├── es.array.push.js │ │ ├── es.array.reduce-right.js │ │ ├── es.array.reduce.js │ │ ├── es.array.reverse.js │ │ ├── es.array.slice.js │ │ ├── es.array.some.js │ │ ├── es.array.sort.js │ │ ├── es.array.splice.js │ │ ├── es.array.to-reversed.js │ │ ├── es.array.to-sorted.js │ │ ├── es.array.to-spliced.js │ │ ├── es.array.unshift.js │ │ ├── es.array.with.js │ │ ├── es.async-disposable-stack.constructor.js │ │ ├── es.async-iterator.async-dispose.js │ │ ├── es.date.get-year.js │ │ ├── es.date.now.js │ │ ├── es.date.set-year.js │ │ ├── es.date.to-gmt-string.js │ │ ├── es.date.to-iso-string.js │ │ ├── es.date.to-json.js │ │ ├── es.disposable-stack.constructor.js │ │ ├── es.error.cause.js │ │ ├── es.error.is-error.js │ │ ├── es.escape.js │ │ ├── es.function.bind.js │ │ ├── es.function.has-instance.js │ │ ├── es.global-this.js │ │ ├── es.iterator.concat.js │ │ ├── es.iterator.constructor.js │ │ ├── es.iterator.dispose.js │ │ ├── es.iterator.drop.js │ │ ├── es.iterator.every.js │ │ ├── es.iterator.filter.js │ │ ├── es.iterator.find.js │ │ ├── es.iterator.flat-map.js │ │ ├── es.iterator.for-each.js │ │ ├── es.iterator.from.js │ │ ├── es.iterator.map.js │ │ ├── es.iterator.reduce.js │ │ ├── es.iterator.some.js │ │ ├── es.iterator.take.js │ │ ├── es.iterator.to-array.js │ │ ├── es.json.is-raw-json.js │ │ ├── es.json.parse.js │ │ ├── es.json.raw-json.js │ │ ├── es.json.stringify.js │ │ ├── es.map.get-or-insert-computed.js │ │ ├── es.map.get-or-insert.js │ │ ├── es.map.group-by.js │ │ ├── es.map.js │ │ ├── es.math.acosh.js │ │ ├── es.math.asinh.js │ │ ├── es.math.atanh.js │ │ ├── es.math.cbrt.js │ │ ├── es.math.clz32.js │ │ ├── es.math.cosh.js │ │ ├── es.math.expm1.js │ │ ├── es.math.f16round.js │ │ ├── es.math.fround.js │ │ ├── es.math.hypot.js │ │ ├── es.math.imul.js │ │ ├── es.math.log10.js │ │ ├── es.math.log1p.js │ │ ├── es.math.log2.js │ │ ├── es.math.sign.js │ │ ├── es.math.sinh.js │ │ ├── es.math.sum-precise.js │ │ ├── es.math.tanh.js │ │ ├── es.math.trunc.js │ │ ├── es.number.constructor.js │ │ ├── es.number.epsilon.js │ │ ├── es.number.is-finite.js │ │ ├── es.number.is-integer.js │ │ ├── es.number.is-nan.js │ │ ├── es.number.is-safe-integer.js │ │ ├── es.number.max-safe-integer.js │ │ ├── es.number.min-safe-integer.js │ │ ├── es.number.parse-float.js │ │ ├── es.number.parse-int.js │ │ ├── es.number.to-exponential.js │ │ ├── es.number.to-fixed.js │ │ ├── es.number.to-precision.js │ │ ├── es.object.assign.js │ │ ├── es.object.create.js │ │ ├── es.object.define-getter.js │ │ ├── es.object.define-properties.js │ │ ├── es.object.define-property.js │ │ ├── es.object.define-setter.js │ │ ├── es.object.entries.js │ │ ├── es.object.freeze.js │ │ ├── es.object.from-entries.js │ │ ├── es.object.get-own-property-descriptor.js │ │ ├── es.object.get-own-property-descriptors.js │ │ ├── es.object.get-own-property-names.js │ │ ├── es.object.get-own-property-symbols.js │ │ ├── es.object.get-prototype-of.js │ │ ├── es.object.group-by.js │ │ ├── es.object.has-own.js │ │ ├── es.object.is-extensible.js │ │ ├── es.object.is-frozen.js │ │ ├── es.object.is-sealed.js │ │ ├── es.object.is.js │ │ ├── es.object.keys.js │ │ ├── es.object.lookup-getter.js │ │ ├── es.object.lookup-setter.js │ │ ├── es.object.prevent-extensions.js │ │ ├── es.object.seal.js │ │ ├── es.object.set-prototype-of.js │ │ ├── es.object.values.js │ │ ├── es.parse-float.js │ │ ├── es.parse-int.js │ │ ├── es.promise.all-settled.js │ │ ├── es.promise.all.js │ │ ├── es.promise.any.js │ │ ├── es.promise.catch.js │ │ ├── es.promise.constructor.js │ │ ├── es.promise.finally.js │ │ ├── es.promise.race.js │ │ ├── es.promise.reject.js │ │ ├── es.promise.resolve.js │ │ ├── es.promise.try.js │ │ ├── es.promise.with-resolvers.js │ │ ├── es.reflect.apply.js │ │ ├── es.reflect.construct.js │ │ ├── es.reflect.define-property.js │ │ ├── es.reflect.delete-property.js │ │ ├── es.reflect.get-own-property-descriptor.js │ │ ├── es.reflect.get-prototype-of.js │ │ ├── es.reflect.get.js │ │ ├── es.reflect.has.js │ │ ├── es.reflect.is-extensible.js │ │ ├── es.reflect.own-keys.js │ │ ├── es.reflect.prevent-extensions.js │ │ ├── es.reflect.set-prototype-of.js │ │ ├── es.reflect.set.js │ │ ├── es.regexp.escape.js │ │ ├── es.set.difference.js │ │ ├── es.set.intersection.js │ │ ├── es.set.is-disjoint-from.js │ │ ├── es.set.is-subset-of.js │ │ ├── es.set.is-superset-of.js │ │ ├── es.set.js │ │ ├── es.set.symmetric-difference.js │ │ ├── es.set.union.js │ │ ├── es.string.anchor.js │ │ ├── es.string.at-alternative.js │ │ ├── es.string.big.js │ │ ├── es.string.blink.js │ │ ├── es.string.bold.js │ │ ├── es.string.code-point-at.js │ │ ├── es.string.ends-with.js │ │ ├── es.string.fixed.js │ │ ├── es.string.fontcolor.js │ │ ├── es.string.fontsize.js │ │ ├── es.string.from-code-point.js │ │ ├── es.string.includes.js │ │ ├── es.string.is-well-formed.js │ │ ├── es.string.italics.js │ │ ├── es.string.iterator.js │ │ ├── es.string.link.js │ │ ├── es.string.match-all.js │ │ ├── es.string.pad-end.js │ │ ├── es.string.pad-start.js │ │ ├── es.string.raw.js │ │ ├── es.string.repeat.js │ │ ├── es.string.replace-all.js │ │ ├── es.string.small.js │ │ ├── es.string.starts-with.js │ │ ├── es.string.strike.js │ │ ├── es.string.sub.js │ │ ├── es.string.substr.js │ │ ├── es.string.sup.js │ │ ├── es.string.to-well-formed.js │ │ ├── es.string.trim-end.js │ │ ├── es.string.trim-left.js │ │ ├── es.string.trim-right.js │ │ ├── es.string.trim-start.js │ │ ├── es.string.trim.js │ │ ├── es.suppressed-error.constructor.js │ │ ├── es.symbol.async-dispose.js │ │ ├── es.symbol.async-iterator.js │ │ ├── es.symbol.constructor.js │ │ ├── es.symbol.dispose.js │ │ ├── es.symbol.for.js │ │ ├── es.symbol.key-for.js │ │ ├── es.unescape.js │ │ ├── es.weak-map.get-or-insert-computed.js │ │ ├── es.weak-map.get-or-insert.js │ │ ├── es.weak-map.js │ │ ├── es.weak-set.js │ │ ├── esnext.array.filter-out.js │ │ ├── esnext.array.filter-reject.js │ │ ├── esnext.array.group-by-to-map.js │ │ ├── esnext.array.group-by.js │ │ ├── esnext.array.group-to-map.js │ │ ├── esnext.array.group.js │ │ ├── esnext.array.is-template-object.js │ │ ├── esnext.array.unique-by.js │ │ ├── esnext.async-iterator.as-indexed-pairs.js │ │ ├── esnext.async-iterator.constructor.js │ │ ├── esnext.async-iterator.drop.js │ │ ├── esnext.async-iterator.every.js │ │ ├── esnext.async-iterator.filter.js │ │ ├── esnext.async-iterator.find.js │ │ ├── esnext.async-iterator.flat-map.js │ │ ├── esnext.async-iterator.for-each.js │ │ ├── esnext.async-iterator.from.js │ │ ├── esnext.async-iterator.indexed.js │ │ ├── esnext.async-iterator.map.js │ │ ├── esnext.async-iterator.reduce.js │ │ ├── esnext.async-iterator.some.js │ │ ├── esnext.async-iterator.take.js │ │ ├── esnext.async-iterator.to-array.js │ │ ├── esnext.bigint.range.js │ │ ├── esnext.composite-key.js │ │ ├── esnext.composite-symbol.js │ │ ├── esnext.function.demethodize.js │ │ ├── esnext.function.is-callable.js │ │ ├── esnext.function.is-constructor.js │ │ ├── esnext.function.metadata.js │ │ ├── esnext.function.un-this.js │ │ ├── esnext.iterator.as-indexed-pairs.js │ │ ├── esnext.iterator.chunks.js │ │ ├── esnext.iterator.indexed.js │ │ ├── esnext.iterator.range.js │ │ ├── esnext.iterator.sliding.js │ │ ├── esnext.iterator.to-async.js │ │ ├── esnext.iterator.windows.js │ │ ├── esnext.iterator.zip-keyed.js │ │ ├── esnext.iterator.zip.js │ │ ├── esnext.map.delete-all.js │ │ ├── esnext.map.emplace.js │ │ ├── esnext.map.every.js │ │ ├── esnext.map.filter.js │ │ ├── esnext.map.find-key.js │ │ ├── esnext.map.find.js │ │ ├── esnext.map.from.js │ │ ├── esnext.map.includes.js │ │ ├── esnext.map.key-by.js │ │ ├── esnext.map.key-of.js │ │ ├── esnext.map.map-keys.js │ │ ├── esnext.map.map-values.js │ │ ├── esnext.map.merge.js │ │ ├── esnext.map.of.js │ │ ├── esnext.map.reduce.js │ │ ├── esnext.map.some.js │ │ ├── esnext.map.update-or-insert.js │ │ ├── esnext.map.update.js │ │ ├── esnext.map.upsert.js │ │ ├── esnext.math.clamp.js │ │ ├── esnext.math.deg-per-rad.js │ │ ├── esnext.math.degrees.js │ │ ├── esnext.math.fscale.js │ │ ├── esnext.math.iaddh.js │ │ ├── esnext.math.imulh.js │ │ ├── esnext.math.isubh.js │ │ ├── esnext.math.rad-per-deg.js │ │ ├── esnext.math.radians.js │ │ ├── esnext.math.scale.js │ │ ├── esnext.math.seeded-prng.js │ │ ├── esnext.math.signbit.js │ │ ├── esnext.math.umulh.js │ │ ├── esnext.number.clamp.js │ │ ├── esnext.number.from-string.js │ │ ├── esnext.number.range.js │ │ ├── esnext.object.iterate-entries.js │ │ ├── esnext.object.iterate-keys.js │ │ ├── esnext.object.iterate-values.js │ │ ├── esnext.observable.constructor.js │ │ ├── esnext.observable.from.js │ │ ├── esnext.observable.of.js │ │ ├── esnext.reflect.define-metadata.js │ │ ├── esnext.reflect.delete-metadata.js │ │ ├── esnext.reflect.get-metadata-keys.js │ │ ├── esnext.reflect.get-metadata.js │ │ ├── esnext.reflect.get-own-metadata-keys.js │ │ ├── esnext.reflect.get-own-metadata.js │ │ ├── esnext.reflect.has-metadata.js │ │ ├── esnext.reflect.has-own-metadata.js │ │ ├── esnext.reflect.metadata.js │ │ ├── esnext.set.add-all.js │ │ ├── esnext.set.delete-all.js │ │ ├── esnext.set.every.js │ │ ├── esnext.set.filter.js │ │ ├── esnext.set.find.js │ │ ├── esnext.set.from.js │ │ ├── esnext.set.join.js │ │ ├── esnext.set.map.js │ │ ├── esnext.set.of.js │ │ ├── esnext.set.reduce.js │ │ ├── esnext.set.some.js │ │ ├── esnext.string.at.js │ │ ├── esnext.string.code-points.js │ │ ├── esnext.string.cooked.js │ │ ├── esnext.string.dedent.js │ │ ├── esnext.symbol.custom-matcher.js │ │ ├── esnext.symbol.is-registered-symbol.js │ │ ├── esnext.symbol.is-registered.js │ │ ├── esnext.symbol.is-well-known-symbol.js │ │ ├── esnext.symbol.is-well-known.js │ │ ├── esnext.symbol.matcher.js │ │ ├── esnext.symbol.metadata-key.js │ │ ├── esnext.symbol.metadata.js │ │ ├── esnext.symbol.observable.js │ │ ├── esnext.symbol.pattern-match.js │ │ ├── esnext.symbol.replace-all.js │ │ ├── esnext.weak-map.delete-all.js │ │ ├── esnext.weak-map.emplace.js │ │ ├── esnext.weak-map.from.js │ │ ├── esnext.weak-map.of.js │ │ ├── esnext.weak-map.upsert.js │ │ ├── esnext.weak-set.add-all.js │ │ ├── esnext.weak-set.delete-all.js │ │ ├── esnext.weak-set.from.js │ │ ├── esnext.weak-set.of.js │ │ ├── helpers.get-iterator-method.js │ │ ├── helpers.get-iterator.js │ │ ├── helpers.is-iterable.js │ │ ├── web.atob.js │ │ ├── web.btoa.js │ │ ├── web.dom-collections.iterator.js │ │ ├── web.dom-exception.constructor.js │ │ ├── web.queue-microtask.js │ │ ├── web.self.js │ │ ├── web.set-immediate.js │ │ ├── web.set-interval.js │ │ ├── web.set-timeout.js │ │ ├── web.structured-clone.js │ │ ├── web.url-search-params.js │ │ ├── web.url.can-parse.js │ │ ├── web.url.js │ │ └── web.url.parse.js │ └── wpt-url-resources/ │ ├── setters.js │ ├── toascii.js │ └── urltestdata.js └── website/ ├── build-local.mjs ├── build.mjs ├── clean.mjs ├── config/ │ ├── config.mjs │ └── versions.json ├── copy.mjs ├── index.mjs ├── package.json ├── scripts/ │ ├── helpers.mjs │ ├── runner.mjs │ └── runner.sh ├── src/ │ ├── images/ │ │ └── LICENSE │ ├── index.html │ ├── js/ │ │ ├── content-menu.js │ │ ├── hljs-run.js │ │ ├── main.js │ │ ├── playground.js │ │ └── scroll-to.js │ ├── playground.html │ └── scss/ │ ├── app.scss │ ├── includes/ │ │ ├── base.scss │ │ ├── forms.scss │ │ ├── markdown.scss │ │ ├── mixins.scss │ │ ├── reset.scss │ │ ├── themed.scss │ │ ├── themes.scss │ │ ├── themify.scss │ │ ├── variables-dark.scss │ │ └── variables-light.scss │ └── parts/ │ ├── code.scss │ ├── footer.scss │ ├── header.scss │ ├── main.scss │ ├── playground.scss │ └── tooltip.scss └── vite.config.mjs