├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build-and-deploy-pages.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 └── zh_CN │ ├── 2019-03-19-core-js-3-babel-and-a-look-into-the-future.md │ └── 2023-02-14-so-whats-next.md ├── package-lock.json ├── package.json ├── packages ├── 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 │ │ │ ├── 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 └── core-js │ ├── .npmignore │ ├── README.md │ ├── actual │ ├── README.md │ ├── aggregate-error.js │ ├── array-buffer │ │ ├── constructor.js │ │ ├── detached.js │ │ ├── index.js │ │ ├── is-view.js │ │ ├── slice.js │ │ ├── transfer-to-fixed-length.js │ │ └── transfer.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 │ ├── 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 │ │ ├── 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 │ ├── json │ │ ├── index.js │ │ ├── is-raw-json.js │ │ ├── parse.js │ │ ├── raw-json.js │ │ ├── stringify.js │ │ └── to-string-tag.js │ ├── map │ │ ├── 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-immediate.js │ ├── set-interval.js │ ├── set-timeout.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 │ ├── 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-search-params │ │ └── index.js │ ├── url │ │ ├── can-parse.js │ │ ├── index.js │ │ ├── parse.js │ │ └── to-json.js │ ├── weak-map │ │ └── index.js │ └── weak-set │ │ └── index.js │ ├── configurator.js │ ├── es │ ├── README.md │ ├── aggregate-error.js │ ├── array-buffer │ │ ├── constructor.js │ │ ├── detached.js │ │ ├── index.js │ │ ├── is-view.js │ │ ├── slice.js │ │ ├── transfer-to-fixed-length.js │ │ └── transfer.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 │ ├── 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 │ │ ├── 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 │ │ ├── stringify.js │ │ └── to-string-tag.js │ ├── map │ │ ├── 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 │ │ ├── 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.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.js │ │ ├── slice.js │ │ ├── some.js │ │ ├── sort.js │ │ ├── subarray.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 │ │ └── index.js │ └── weak-set │ │ └── index.js │ ├── full │ ├── README.md │ ├── aggregate-error.js │ ├── array-buffer │ │ ├── constructor.js │ │ ├── detached.js │ │ ├── index.js │ │ ├── is-view.js │ │ ├── slice.js │ │ ├── transfer-to-fixed-length.js │ │ └── transfer.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 │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ │ ├── 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-immediate.js │ ├── set-interval.js │ ├── set-timeout.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 │ ├── 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-search-params │ │ └── index.js │ ├── url │ │ ├── can-parse.js │ │ ├── index.js │ │ ├── parse.js │ │ └── to-json.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-to-reversed.js │ ├── array-unique-by.js │ ├── array-with.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-json-replacer-function.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-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.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.stringify.js │ ├── es.json.to-string-tag.js │ ├── es.map.constructor.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.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.unescape.js │ ├── es.weak-map.constructor.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.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.some.js │ ├── esnext.iterator.take.js │ ├── esnext.iterator.to-array.js │ ├── esnext.iterator.to-async.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-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-buffer │ │ ├── constructor.js │ │ ├── detached.js │ │ ├── index.js │ │ ├── is-view.js │ │ ├── slice.js │ │ ├── transfer-to-fixed-length.js │ │ └── transfer.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 │ ├── 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 │ │ ├── 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 │ │ ├── stringify.js │ │ └── to-string-tag.js │ ├── map │ │ ├── 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 │ │ ├── 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-immediate.js │ ├── set-interval.js │ ├── set-timeout.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 │ ├── 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.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.js │ │ ├── slice.js │ │ ├── some.js │ │ ├── sort.js │ │ ├── subarray.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-search-params │ │ └── index.js │ ├── url │ │ ├── can-parse.js │ │ ├── index.js │ │ ├── parse.js │ │ └── to-json.js │ ├── weak-map │ │ └── 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 ├── scripts ├── build-compat │ ├── data.mjs │ ├── entries.mjs │ ├── index.mjs │ └── modules-by-versions.mjs ├── build-indexes.mjs ├── bundle-package │ ├── bundle-package.mjs │ ├── package-lock.json │ └── package.json ├── bundle-tests │ ├── bundle-tests.mjs │ ├── package-lock.json │ ├── package.json │ └── webpack.config.js ├── check-compat-data-mapping.mjs ├── check-dependencies │ ├── check-dependencies.mjs │ ├── package-lock.json │ └── package.json ├── check-unused-modules.mjs ├── clean-and-copy.mjs ├── clean-dependencies.mjs ├── downloads-by-versions.mjs ├── prepare.mjs ├── update-version.mjs ├── usage │ ├── package-lock.json │ ├── package.json │ └── usage.mjs └── zxi.mjs └── tests ├── builder └── builder.mjs ├── codespell └── runner.mjs ├── 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 ├── 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 ├── entries ├── content.mjs ├── index.mjs └── unit.mjs ├── eslint ├── eslint.config.js ├── package-lock.json ├── package.json └── runner.mjs ├── helpers ├── constants.js ├── helpers.js └── qunit-helpers.js ├── observables ├── adapter.mjs ├── package-lock.json ├── package.json └── runner.mjs ├── promises ├── adapter.js ├── package-lock.json ├── package.json └── runner.mjs ├── publint ├── package-lock.json ├── package.json └── runner.mjs ├── test262 ├── package-lock.json ├── package.json ├── preprocessor.js └── runner.mjs ├── type-definitions ├── builder.ts ├── compat.ts ├── package-lock.json ├── package.json ├── runner.mjs └── tsconfig.json ├── unit-browser ├── global.html └── pure.html ├── unit-bun ├── package-lock.json ├── 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.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.stringify.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.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.unescape.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.concat.js ├── esnext.iterator.indexed.js ├── esnext.iterator.range.js ├── esnext.iterator.to-async.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.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.sum-precise.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.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.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-lock.json ├── package.json └── runner.mjs ├── unit-node ├── package-lock.json ├── 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.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.stringify.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.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.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.concat.js ├── esnext.iterator.indexed.js ├── esnext.iterator.range.js ├── esnext.iterator.to-async.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.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.sum-precise.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.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 ├── 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 ├── worker ├── index.html ├── runner.js └── test.js └── wpt-url-resources ├── setters.js ├── toascii.js └── urltestdata.js /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: core-js 2 | patreon: zloirock 3 | custom: https://boosty.to/zloirock 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | audit=false 2 | fund=false 3 | lockfile-version=3 4 | loglevel=error 5 | -------------------------------------------------------------------------------- /packages/core-js-builder/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.log 3 | .* 4 | -------------------------------------------------------------------------------- /packages/core-js-bundle/.npmignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .* 3 | -------------------------------------------------------------------------------- /packages/core-js-compat/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | /src/ 3 | *.log 4 | .* 5 | -------------------------------------------------------------------------------- /packages/core-js-pure/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.log 3 | .* 4 | 5 | /override/ 6 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/add-to-unscopables.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function () { /* empty */ }; 3 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/array-buffer-byte-length.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/array-buffer-is-detached.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/array-buffer-transfer.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/array-buffer-view-core.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/array-buffer.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/fix-regexp-well-known-symbol-logic.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/is-pure.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = true; 3 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/make-built-in.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function (value) { 3 | return value; 4 | }; 5 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/path.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = {}; 3 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/regexp-exec.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = /./.exec; 3 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/regexp-sticky-helpers.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/regexp-unsupported-dot-all.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/set-method-accept-set-like.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function () { 3 | return false; 4 | }; 5 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/set-size.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function (set) { 3 | return set.size; 4 | }; 5 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/to-offset.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/typed-array-constructor.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/typed-array-constructors-require-wrappers.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/typed-array-from-same-type-and-list.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/internals/typed-array-from.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.array-buffer.constructor.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.array-buffer.detached.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.array-buffer.is-view.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.array-buffer.slice.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.array-buffer.transfer-to-fixed-length.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.array-buffer.transfer.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.data-view.get-float16.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.data-view.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.data-view.set-float16.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.date.to-primitive.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.date.to-string.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.error.to-string.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.function.name.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.math.to-string-tag.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.object.proto.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.object.to-string.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.reflect.to-string-tag.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.regexp.dot-all.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.regexp.exec.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.regexp.flags.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.regexp.sticky.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.regexp.test.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.regexp.to-string.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.string.match.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.string.replace.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.string.search.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.string.split.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.symbol.description.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.at.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.copy-within.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.every.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.fill.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.filter.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.find-index.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.find-last-index.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.find-last.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.find.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.float32-array.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.float64-array.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.for-each.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.from.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.includes.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.index-of.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.int16-array.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.int32-array.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.int8-array.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.iterator.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.join.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.last-index-of.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.map.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.of.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.reduce-right.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.reduce.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.reverse.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.set.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.slice.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.some.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.sort.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.subarray.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.to-locale-string.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.to-reversed.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.to-sorted.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.to-string.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.uint16-array.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.uint32-array.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.uint8-array.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.uint8-clamped-array.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/es.typed-array.with.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.array-buffer.detached.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.array-buffer.transfer-to-fixed-length.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.array-buffer.transfer.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.array.last-index.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.array.last-item.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.data-view.get-float16.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.data-view.get-uint8-clamped.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.data-view.set-float16.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.data-view.set-uint8-clamped.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.typed-array.at.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.typed-array.filter-out.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.typed-array.filter-reject.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.typed-array.find-last-index.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.typed-array.find-last.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.typed-array.from-async.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.typed-array.group-by.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.typed-array.to-spliced.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.typed-array.unique-by.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.uint8-array.from-base64.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.uint8-array.from-hex.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.uint8-array.set-from-base64.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.uint8-array.set-from-hex.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.uint8-array.to-base64.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/esnext.uint8-array.to-hex.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/web.dom-collections.for-each.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/web.url-search-params.delete.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/web.url-search-params.has.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/web.url-search-params.size.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js-pure/override/modules/web.url.to-json.js: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /packages/core-js/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.log 3 | .* 4 | -------------------------------------------------------------------------------- /packages/core-js/actual/aggregate-error.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/aggregate-error'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/at.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/at'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/concat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/concat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/entries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/entries'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/every.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/every'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/fill.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/fill'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/filter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/filter'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/find.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/find'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/flat-map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/flat-map'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/flat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/flat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/for-each.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/for-each'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/from.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/from'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/includes.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/includes'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/index-of.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/index-of'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/is-array.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/is-array'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/iterator.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/iterator'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/join.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/join'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/keys.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/keys'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/map'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/of.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/of'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/push.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/push'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/reduce.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/reduce'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/reverse.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/reverse'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/slice.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/slice'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/some.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/some'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/sort.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/sort'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/splice.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/splice'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/unshift.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/unshift'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/array/values.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/array/values'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/atob.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/atob'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/btoa.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/btoa'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/clear-immediate.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/clear-immediate'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/date/get-year.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/date/get-year'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/date/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/date'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/date/now.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/date/now'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/date/set-year.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/date/set-year'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/date/to-json.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/date/to-json'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/date/to-string.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/date/to-string'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/error/to-string.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/error/to-string'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/escape.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/escape'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/function/bind.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/function/bind'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/function/metadata.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/esnext.function.metadata'); 3 | 4 | module.exports = null; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/function/name.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/function/name'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/get-iterator.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/get-iterator'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/global-this.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/global-this'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/at.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/at'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/bind.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/bind'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/concat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/concat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/every.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/every'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/fill.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/fill'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/filter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/filter'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/find.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/find'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/flags.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/flags'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/flat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/flat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/keys.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/keys'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/map'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/push.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/push'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/reduce.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/reduce'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/repeat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/repeat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/slice.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/slice'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/some.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/some'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/sort.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/sort'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/splice.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/splice'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/trim.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/trim'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/instance/values.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/instance/values'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/is-iterable.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/is-iterable'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/iterator/dispose.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/esnext.iterator.dispose'); 3 | -------------------------------------------------------------------------------- /packages/core-js/actual/json/stringify.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/json/stringify'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/acosh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/acosh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/asinh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/asinh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/atanh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/atanh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/cbrt.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/cbrt'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/clz32.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/clz32'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/cosh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/cosh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/expm1.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/expm1'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/fround.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/fround'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/hypot.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/hypot'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/imul.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/imul'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/log10.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/log10'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/log1p.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/log1p'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/log2.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/log2'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/sign.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/sign'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/sinh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/sinh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/tanh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/tanh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/math/trunc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/math/trunc'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/number/epsilon.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/number/epsilon'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/number/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/number'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/number/is-nan.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/number/is-nan'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/number/to-fixed.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/number/to-fixed'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/object/assign.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/object/assign'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/object/create.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/object/create'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/object/entries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/object/entries'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/object/freeze.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/object/freeze'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/object/has-own.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/object/has-own'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/object/is.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/object/is'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/object/keys.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/object/keys'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/object/proto.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/object/proto'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/object/seal.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/object/seal'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/object/values.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/object/values'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/parse-float.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/parse-float'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/parse-int.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/parse-int'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/promise/any.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/promise/any'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/promise/finally.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/promise/finally'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/queue-microtask.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/queue-microtask'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/reflect/apply.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/reflect/apply'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/reflect/get.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/reflect/get'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/reflect/has.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/reflect/has'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/reflect/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/reflect'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/reflect/set.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/reflect/set'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/regexp/dot-all.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/regexp/dot-all'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/regexp/flags.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/regexp/flags'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/regexp/match.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/regexp/match'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/regexp/replace.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/regexp/replace'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/regexp/search.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/regexp/search'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/regexp/split.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/regexp/split'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/regexp/sticky.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/regexp/sticky'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/regexp/test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/regexp/test'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/self.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/self'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/set-immediate.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/set-immediate'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/set-interval.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/set-interval'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/set-timeout.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/set-timeout'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/anchor.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/anchor'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/at.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/at'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/big.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/big'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/blink.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/blink'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/bold.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/bold'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/fixed.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/fixed'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/fontsize.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/fontsize'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/includes.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/includes'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/italics.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/italics'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/iterator.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/iterator'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/link.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/link'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/match.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/match'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/pad-end.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/pad-end'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/raw.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/raw'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/repeat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/repeat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/replace.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/replace'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/search.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/search'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/small.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/small'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/split.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/split'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/strike.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/strike'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/sub.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/sub'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/substr.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/substr'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/sup.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/sup'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/trim-end.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/trim-end'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/string/trim.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/string/trim'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/structured-clone.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/structured-clone'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/symbol/for.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/symbol/for'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/symbol/iterator.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/symbol/iterator'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/symbol/key-for.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/symbol/key-for'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/symbol/match.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/symbol/match'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/symbol/replace.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/symbol/replace'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/symbol/search.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/symbol/search'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/symbol/species.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/symbol/species'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/symbol/split.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/symbol/split'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/typed-array/at.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/typed-array/at'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/typed-array/from-base64.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/esnext.uint8-array.from-base64'); 3 | -------------------------------------------------------------------------------- /packages/core-js/actual/typed-array/from-hex.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/esnext.uint8-array.from-hex'); 3 | -------------------------------------------------------------------------------- /packages/core-js/actual/typed-array/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/typed-array/map'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/typed-array/of.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/typed-array/of'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/typed-array/set-from-base64.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/esnext.uint8-array.set-from-base64'); 3 | -------------------------------------------------------------------------------- /packages/core-js/actual/typed-array/set-from-hex.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/esnext.uint8-array.set-from-hex'); 3 | -------------------------------------------------------------------------------- /packages/core-js/actual/typed-array/set.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/typed-array/set'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/typed-array/to-base64.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/esnext.uint8-array.to-base64'); 3 | -------------------------------------------------------------------------------- /packages/core-js/actual/typed-array/to-hex.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/esnext.uint8-array.to-hex'); 3 | -------------------------------------------------------------------------------- /packages/core-js/actual/unescape.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../stable/unescape'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/url/can-parse.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/url/can-parse'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/url/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/url'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/url/parse.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/url/parse'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/url/to-json.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/url/to-json'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/weak-map/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/weak-map'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/actual/weak-set/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../stable/weak-set'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/es/array-buffer/slice.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.array-buffer.slice'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/data-view/get-float16.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.data-view.get-float16'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/data-view/set-float16.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.data-view.set-float16'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/function/name.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.function.name'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/iterator/dispose.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.iterator.dispose'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/json/to-string-tag.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.json.to-string-tag'); 3 | 4 | module.exports = 'JSON'; 5 | -------------------------------------------------------------------------------- /packages/core-js/es/math/to-string-tag.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.math.to-string-tag'); 3 | 4 | module.exports = 'Math'; 5 | -------------------------------------------------------------------------------- /packages/core-js/es/number/epsilon.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.number.epsilon'); 3 | 4 | module.exports = Math.pow(2, -52); 5 | -------------------------------------------------------------------------------- /packages/core-js/es/object/proto.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.object.proto'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/symbol/description.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.symbol.description'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/at.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.at'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/copy-within.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.copy-within'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/every.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.every'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/fill.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.fill'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/filter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.filter'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/find-index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.find-index'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/find-last-index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.find-last-index'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/find-last.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.find-last'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/find.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.find'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/for-each.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.for-each'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/from.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.from'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/includes.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.includes'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/index-of.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.index-of'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/join.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.join'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/last-index-of.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.last-index-of'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.map'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/of.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.of'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/reduce-right.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.reduce-right'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/reduce.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.reduce'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/reverse.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.reverse'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/set.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.set'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/slice.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.slice'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/some.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.some'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/sort.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.sort'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/subarray.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.subarray'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/to-locale-string.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.to-locale-string'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/to-reversed.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.to-reversed'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/to-string.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.to-string'); 3 | -------------------------------------------------------------------------------- /packages/core-js/es/typed-array/with.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.typed-array.with'); 3 | -------------------------------------------------------------------------------- /packages/core-js/full/array-buffer/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array-buffer'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/concat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/concat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/entries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/entries'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/every.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/every'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/fill.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/fill'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/filter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/filter'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/find-index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/find-index'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/find-last.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/find-last'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/find.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/find'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/flat-map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/flat-map'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/flat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/flat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/for-each.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/for-each'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/from-async.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/from-async'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/from.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/from'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/group-by.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/group-by'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/group.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/group'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/includes.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/includes'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/index-of.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/index-of'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/is-array.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/is-array'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/iterator.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/iterator'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/join.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/join'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/keys.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/keys'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/last-index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/esnext.array.last-index'); 3 | -------------------------------------------------------------------------------- /packages/core-js/full/array/last-item.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/esnext.array.last-item'); 3 | -------------------------------------------------------------------------------- /packages/core-js/full/array/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/map'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/of.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/of'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/push.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/push'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/reduce.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/reduce'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/reverse.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/reverse'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/slice.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/slice'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/some.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/some'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/sort.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/sort'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/splice.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/splice'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/to-sorted.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/to-sorted'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/to-spliced.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/to-spliced'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/unshift.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/unshift'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/values.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/values'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/array/with.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/array/with'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/atob.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../actual/atob'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/btoa.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../actual/btoa'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/clear-immediate.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../actual/clear-immediate'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/data-view/get-uint8-clamped.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/esnext.data-view.get-uint8-clamped'); 3 | -------------------------------------------------------------------------------- /packages/core-js/full/data-view/set-uint8-clamped.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/esnext.data-view.set-uint8-clamped'); 3 | -------------------------------------------------------------------------------- /packages/core-js/full/date/get-year.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/date/get-year'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/date/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/date'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/date/now.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/date/now'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/date/set-year.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/date/set-year'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/date/to-json.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/date/to-json'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/date/to-string.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/date/to-string'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/dom-exception/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/dom-exception'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/error/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/error'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/error/is-error.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/error/is-error'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/error/to-string.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/error/to-string'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/escape.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../actual/escape'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/function/bind.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/function/bind'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/function/name.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/function/name'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/get-iterator.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../actual/get-iterator'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/bind.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/bind'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/concat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/concat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/entries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/entries'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/every.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/every'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/fill.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/fill'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/filter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/filter'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/find.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/find'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/flags.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/flags'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/flat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/flat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/group.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/group'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/keys.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/keys'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/map'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/pad-end.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/pad-end'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/push.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/push'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/reduce.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/reduce'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/repeat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/repeat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/reverse.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/reverse'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/slice.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/slice'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/some.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/some'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/sort.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/sort'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/splice.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/splice'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/trim.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/trim'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/unshift.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/unshift'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/values.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/values'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/instance/with.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/instance/with'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/is-iterable.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../actual/is-iterable'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/iterator/dispose.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/iterator/dispose'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/iterator/drop.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/iterator/drop'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/iterator/every.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/iterator/every'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/iterator/filter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/iterator/filter'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/iterator/find.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/iterator/find'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/iterator/from.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/iterator/from'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/iterator/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/iterator/map'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/iterator/reduce.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/iterator/reduce'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/iterator/some.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/iterator/some'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/iterator/take.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/iterator/take'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/json/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/json'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/json/is-raw-json.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/json/is-raw-json'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/json/parse.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/json/parse'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/json/raw-json.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/json/raw-json'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/json/stringify.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/json/stringify'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/acosh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/acosh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/asinh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/asinh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/atanh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/atanh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/cbrt.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/cbrt'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/clz32.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/clz32'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/cosh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/cosh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/expm1.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/expm1'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/f16round.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/f16round'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/fround.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/fround'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/hypot.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/hypot'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/imul.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/imul'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/log10.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/log10'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/log1p.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/log1p'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/log2.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/log2'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/sign.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/sign'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/sinh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/sinh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/sum-precise.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/sum-precise'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/tanh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/tanh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/math/trunc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/math/trunc'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/number/epsilon.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/number/epsilon'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/number/is-finite.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/number/is-finite'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/number/is-nan.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/number/is-nan'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/number/parse-int.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/number/parse-int'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/number/to-fixed.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/number/to-fixed'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/object/assign.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/object/assign'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/object/create.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/object/create'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/object/entries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/object/entries'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/object/freeze.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/object/freeze'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/object/group-by.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/object/group-by'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/object/is-frozen.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/object/is-frozen'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/object/is-sealed.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/object/is-sealed'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/object/is.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/object/is'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/object/keys.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/object/keys'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/object/proto.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/object/proto'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/object/seal.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/object/seal'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/object/to-string.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/object/to-string'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/object/values.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/object/values'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/parse-float.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../actual/parse-float'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/parse-int.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../actual/parse-int'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/promise/finally.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/promise/finally'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/promise/try.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/promise/try'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/queue-microtask.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../actual/queue-microtask'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/reflect/apply.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/reflect/apply'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/reflect/get.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/reflect/get'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/reflect/has.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/reflect/has'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/reflect/own-keys.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/reflect/own-keys'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/reflect/set.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/reflect/set'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/regexp/dot-all.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/regexp/dot-all'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/regexp/escape.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/regexp/escape'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/regexp/flags.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/regexp/flags'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/regexp/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/regexp'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/regexp/match.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/regexp/match'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/regexp/replace.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/regexp/replace'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/regexp/search.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/regexp/search'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/regexp/split.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/regexp/split'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/regexp/sticky.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/regexp/sticky'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/regexp/test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/regexp/test'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/regexp/to-string.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/regexp/to-string'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/self.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../actual/self'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/set-immediate.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../actual/set-immediate'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/set-interval.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../actual/set-interval'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/set-timeout.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../actual/set-timeout'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/anchor.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/anchor'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/big.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/big'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/blink.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/blink'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/bold.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/bold'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/ends-with.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/ends-with'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/fixed.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/fixed'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/fontcolor.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/fontcolor'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/fontsize.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/fontsize'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/includes.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/includes'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/italics.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/italics'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/iterator.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/iterator'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/link.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/link'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/match.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/match'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/pad-end.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/pad-end'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/pad-start.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/pad-start'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/raw.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/raw'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/repeat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/repeat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/replace.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/replace'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/search.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/search'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/small.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/small'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/split.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/split'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/strike.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/strike'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/sub.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/sub'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/substr.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/substr'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/sup.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/sup'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/trim-end.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/trim-end'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/trim-left.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/trim-left'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/string/trim.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/string/trim'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/structured-clone.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../actual/structured-clone'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/suppressed-error.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../actual/suppressed-error'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/symbol/description.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/es.symbol.description'); 3 | -------------------------------------------------------------------------------- /packages/core-js/full/symbol/dispose.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/symbol/dispose'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/symbol/for.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/symbol/for'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/symbol/iterator.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/symbol/iterator'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/symbol/key-for.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/symbol/key-for'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/symbol/match-all.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/symbol/match-all'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/symbol/match.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/symbol/match'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/symbol/metadata.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/symbol/metadata'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/symbol/replace.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/symbol/replace'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/symbol/search.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/symbol/search'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/symbol/species.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/symbol/species'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/symbol/split.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/symbol/split'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/typed-array/fill.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/typed-array/fill'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/typed-array/filter-reject.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/esnext.typed-array.filter-reject'); 3 | -------------------------------------------------------------------------------- /packages/core-js/full/typed-array/find.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/typed-array/find'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/typed-array/from-async.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/esnext.typed-array.from-async'); 3 | -------------------------------------------------------------------------------- /packages/core-js/full/typed-array/from.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/typed-array/from'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/typed-array/group-by.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/esnext.typed-array.group-by'); 3 | -------------------------------------------------------------------------------- /packages/core-js/full/typed-array/join.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/typed-array/join'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/typed-array/keys.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/typed-array/keys'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/typed-array/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/typed-array/map'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/typed-array/of.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/typed-array/of'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/typed-array/set.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/typed-array/set'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/typed-array/some.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/typed-array/some'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/typed-array/sort.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/typed-array/sort'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/typed-array/with.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/typed-array/with'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/unescape.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../actual/unescape'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/url/can-parse.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/url/can-parse'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/url/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/url'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/url/parse.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/url/parse'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/full/url/to-json.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../actual/url/to-json'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = require('./full'); 3 | -------------------------------------------------------------------------------- /packages/core-js/internals/README.md: -------------------------------------------------------------------------------- 1 | This folder contains internal parts of `core-js` like helpers. 2 | -------------------------------------------------------------------------------- /packages/core-js/internals/hidden-keys.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = {}; 3 | -------------------------------------------------------------------------------- /packages/core-js/internals/is-pure.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = false; 3 | -------------------------------------------------------------------------------- /packages/core-js/internals/iterators.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = {}; 3 | -------------------------------------------------------------------------------- /packages/core-js/internals/path.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var globalThis = require('../internals/global-this'); 3 | 4 | module.exports = globalThis; 5 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.aggregate-error.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.aggregate-error'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.array.at.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.array.at'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.array.find-last.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.array.find-last'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.array.from-async.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.array.from-async'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.array.to-sorted.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.array.to-sorted'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.array.to-spliced.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.array.to-spliced'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.array.with.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.array.with'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.error.is-error.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.error.is-error'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.global-this.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.global-this'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.iterator.dispose.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.iterator.dispose'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.iterator.drop.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.iterator.drop'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.iterator.every.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.iterator.every'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.iterator.filter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.iterator.filter'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.iterator.find.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.iterator.find'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.iterator.from.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.iterator.from'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.iterator.map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.iterator.map'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.iterator.reduce.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.iterator.reduce'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.iterator.some.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.iterator.some'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.iterator.take.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.iterator.take'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.map.group-by.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.map.group-by'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.math.f16round.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.math.f16round'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.object.group-by.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.object.group-by'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.object.has-own.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.object.has-own'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.promise.any.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.promise.any'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.promise.try.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.promise.try.js'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.regexp.escape.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.regexp.escape.js'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.set.union.v2.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.set.union.v2'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.string.match-all.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.string.match-all'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.symbol.dispose.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.symbol.dispose'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.typed-array.at.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.typed-array.at'); 4 | -------------------------------------------------------------------------------- /packages/core-js/modules/esnext.typed-array.with.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove from `core-js@4` 3 | require('../modules/es.typed-array.with'); 4 | -------------------------------------------------------------------------------- /packages/core-js/proposals/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // TODO: Remove this entry from `core-js@4` 3 | require('../stage'); 4 | -------------------------------------------------------------------------------- /packages/core-js/proposals/url.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | // https://github.com/jasnell/proposal-url 3 | require('../web/url'); 4 | -------------------------------------------------------------------------------- /packages/core-js/stable/array-buffer/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array-buffer'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/at.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/at'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/concat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/concat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/copy-within.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/copy-within'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/entries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/entries'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/every.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/every'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/fill.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/fill'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/filter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/filter'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/find-index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/find-index'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/find-last-index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = require('../../es/array/find-last-index'); 3 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/find-last.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = require('../../es/array/find-last'); 3 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/find.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/find'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/flat-map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/flat-map'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/flat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/flat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/for-each.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/for-each'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/from-async.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/from-async'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/from.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/from'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/includes.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/includes'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/index-of.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/index-of'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/is-array.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/is-array'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/iterator.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/iterator'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/join.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/join'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/keys.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/keys'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/map'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/of.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/of'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/push.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/push'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/reduce.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/reduce'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/reverse.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/reverse'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/slice.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/slice'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/some.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/some'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/sort.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/sort'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/splice.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/splice'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/to-reversed.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/to-reversed'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/to-sorted.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/to-sorted'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/to-spliced.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/to-spliced'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/unshift.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/unshift'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/values.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/values'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/virtual/at.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../../es/array/virtual/at'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/virtual/find-last-index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = require('../../../es/array/virtual/find-last-index'); 3 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/virtual/find-last.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = require('../../../es/array/virtual/find-last'); 3 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/virtual/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../../es/array/virtual'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/array/with.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/array/with'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/async-iterator/async-dispose.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../es/async-iterator/async-dispose'); 3 | -------------------------------------------------------------------------------- /packages/core-js/stable/async-iterator/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../es/async-iterator'); 3 | -------------------------------------------------------------------------------- /packages/core-js/stable/data-view/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/data-view'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/date/get-year.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/date/get-year'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/date/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/date'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/date/now.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/date/now'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/date/set-year.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/date/set-year'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/date/to-json.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/date/to-json'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/date/to-primitive.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/date/to-primitive'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/date/to-string.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/date/to-string'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/error/constructor.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/error/constructor'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/error/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/error'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/error/is-error.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/error/is-error'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/error/to-string.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/error/to-string'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/escape.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../es/escape'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/function/bind.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/function/bind'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/function/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/function'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/function/name.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/function/name'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/global-this.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../es/global-this'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/at.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/at'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/bind.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/bind'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/concat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/concat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/every.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/every'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/fill.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/fill'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/filter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/filter'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/find.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/find'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/flags.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/flags'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/flat-map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/flat-map'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/flat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/flat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/includes.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/includes'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/index-of.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/index-of'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/map'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/pad-end.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/pad-end'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/push.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/push'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/reduce.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/reduce'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/repeat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/repeat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/reverse.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/reverse'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/slice.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/slice'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/some.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/some'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/sort.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/sort'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/splice.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/splice'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/trim-end.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/trim-end'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/trim.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/trim'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/unshift.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/unshift'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/instance/with.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/instance/with'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/iterator/dispose.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/iterator/dispose'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/iterator/drop.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/iterator/drop'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/iterator/every.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/iterator/every'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/iterator/filter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/iterator/filter'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/iterator/find.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/iterator/find'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/iterator/for-each.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/iterator/for-each'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/iterator/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/iterator/map'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/iterator/reduce.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/iterator/reduce'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/iterator/some.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/iterator/some'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/iterator/take.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/iterator/take'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/iterator/to-array.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/iterator/to-array'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/json/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/json'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/json/stringify.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/json/stringify'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/map/group-by.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/map/group-by'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/acosh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/acosh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/asinh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/asinh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/atanh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/atanh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/cbrt.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/cbrt'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/clz32.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/clz32'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/cosh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/cosh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/expm1.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/expm1'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/f16round.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/f16round'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/fround.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/fround'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/hypot.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/hypot'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/imul.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/imul'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/log10.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/log10'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/log1p.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/log1p'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/log2.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/log2'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/sign.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/sign'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/sinh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/sinh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/tanh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/tanh'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/math/trunc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/math/trunc'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/number/epsilon.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/number/epsilon'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/number/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/number'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/number/is-finite.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/number/is-finite'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/number/is-integer.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/number/is-integer'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/number/is-nan.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/number/is-nan'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/number/parse-int.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/number/parse-int'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/number/to-fixed.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/number/to-fixed'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/object/assign.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/object/assign'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/object/create.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/object/create'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/object/entries.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/object/entries'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/object/freeze.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/object/freeze'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/object/group-by.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/object/group-by'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/object/has-own.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/object/has-own'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/object/is-frozen.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/object/is-frozen'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/object/is.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/object/is'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/object/keys.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/object/keys'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/object/proto.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/object/proto'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/object/seal.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/object/seal'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/object/values.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/object/values'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/parse-float.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../es/parse-float'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/parse-int.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../es/parse-int'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/promise/finally.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/promise/finally'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/promise/try.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/promise/try'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/queue-microtask.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../web/queue-microtask'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/reflect/apply.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/reflect/apply'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/reflect/get.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/reflect/get'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/reflect/has.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/reflect/has'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/reflect/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/reflect'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/reflect/set.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/reflect/set'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/regexp/dot-all.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/regexp/dot-all'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/regexp/escape.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/regexp/escape'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/regexp/flags.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/regexp/flags'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/regexp/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/regexp'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/regexp/match.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/regexp/match'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/regexp/replace.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/regexp/replace'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/regexp/search.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/regexp/search'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/regexp/split.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/regexp/split'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/regexp/sticky.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/regexp/sticky'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/regexp/test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/regexp/test'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/set/difference.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/set/difference'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/set/union.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/set/union'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/anchor.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/anchor'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/at.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/at'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/big.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/big'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/blink.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/blink'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/bold.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/bold'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/fixed.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/fixed'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/fontsize.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/fontsize'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/includes.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/includes'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/italics.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/italics'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/iterator.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/iterator'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/link.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/link'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/match.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/match'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/pad-end.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/pad-end'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/raw.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/raw'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/repeat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/repeat'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/replace.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/replace'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/search.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/search'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/small.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/small'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/split.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/split'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/strike.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/strike'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/sub.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/sub'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/substr.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/substr'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/sup.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/sup'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/trim-end.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/trim-end'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/string/trim.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/string/trim'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/suppressed-error.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../es/suppressed-error'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/symbol/dispose.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/symbol/dispose'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/symbol/for.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/symbol/for'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/symbol/key-for.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/symbol/key-for'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/symbol/match.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/symbol/match'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/symbol/replace.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/symbol/replace'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/symbol/search.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/symbol/search'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/symbol/species.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/symbol/species'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/symbol/split.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/symbol/split'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/typed-array/at.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/typed-array/at'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/typed-array/find-last-index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = require('../../es/typed-array/find-last-index'); 3 | -------------------------------------------------------------------------------- /packages/core-js/stable/typed-array/find-last.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = require('../../es/typed-array/find-last'); 3 | -------------------------------------------------------------------------------- /packages/core-js/stable/typed-array/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/typed-array'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/typed-array/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/typed-array/map'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/typed-array/of.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/typed-array/of'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/typed-array/set.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../es/typed-array/set'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/unescape.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../es/unescape'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/url/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var parent = require('../../web/url'); 3 | 4 | module.exports = parent; 5 | -------------------------------------------------------------------------------- /packages/core-js/stable/url/to-json.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | require('../../modules/web.url.to-json'); 3 | -------------------------------------------------------------------------------- /packages/core-js/stage/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var proposals = require('./pre'); 3 | 4 | module.exports = proposals; 5 | -------------------------------------------------------------------------------- /scripts/build-compat/index.mjs: -------------------------------------------------------------------------------- 1 | await import('./data.mjs'); 2 | await import('./entries.mjs'); 3 | await import('./modules-by-versions.mjs'); 4 | -------------------------------------------------------------------------------- /scripts/prepare.mjs: -------------------------------------------------------------------------------- 1 | await import('./build-indexes.mjs'); 2 | await import('./clean-and-copy.mjs'); 3 | await $`npm run build-compat`; 4 | -------------------------------------------------------------------------------- /tests/compat-data/index.mjs: -------------------------------------------------------------------------------- 1 | await import('./modules-by-versions.mjs'); 2 | await import('./tests-coverage.mjs'); 3 | -------------------------------------------------------------------------------- /tests/compat/hermes-adapter.mjs: -------------------------------------------------------------------------------- 1 | const [HERMES_PATH] = argv._; 2 | 3 | await $`${ HERMES_PATH } -w -commonjs ./tests/compat`; 4 | -------------------------------------------------------------------------------- /tests/compat/rhino-adapter.mjs: -------------------------------------------------------------------------------- 1 | const [path] = argv._; 2 | 3 | await $`java -jar ${ path } -require tests/compat/rhino-runner.js`; 4 | -------------------------------------------------------------------------------- /tests/entries/index.mjs: -------------------------------------------------------------------------------- 1 | await import('./content.mjs'); 2 | await import('./unit.mjs'); 3 | -------------------------------------------------------------------------------- /tests/publint/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tests/publint", 3 | "devDependencies": { 4 | "publint": "^0.3.12" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tests/publint/runner.mjs: -------------------------------------------------------------------------------- 1 | const pkgs = await fs.readdir('packages'); 2 | 3 | await Promise.all(pkgs.map(pkg => $`publint packages/${ pkg }`)); 4 | -------------------------------------------------------------------------------- /tests/type-definitions/runner.mjs: -------------------------------------------------------------------------------- 1 | await $`tsc`; 2 | -------------------------------------------------------------------------------- /tests/unit-bun/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tests/unit-bun", 3 | "devDependencies": { 4 | "qunit": "^2.24.1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tests/unit-node/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tests/unit-node", 3 | "devDependencies": { 4 | "qunit": "^2.24.1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tests/worker/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Worker test 4 | 5 | --------------------------------------------------------------------------------