core-js 3.49.0 → 4.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +32 -20
- package/README.md +7 -7
- package/actual/aggregate-error/constructor.js +11 -0
- package/actual/aggregate-error/index.js +12 -0
- package/actual/aggregate-error/is-error.js +6 -0
- package/actual/array/at.js +4 -2
- package/actual/array/concat.js +4 -2
- package/actual/array/copy-within.js +4 -2
- package/actual/array/entries.js +5 -2
- package/actual/array/fill.js +4 -2
- package/actual/array/filter.js +4 -2
- package/actual/array/find-index.js +4 -2
- package/actual/array/find-last-index.js +4 -3
- package/actual/array/find-last.js +4 -3
- package/actual/array/find.js +4 -2
- package/actual/array/flat-map.js +5 -2
- package/actual/array/flat.js +5 -2
- package/actual/array/from-async.js +12 -3
- package/actual/array/from.js +8 -2
- package/actual/array/includes.js +4 -2
- package/actual/array/index-of.js +4 -2
- package/actual/array/index.js +48 -14
- package/actual/array/instance/at.js +11 -0
- package/actual/array/instance/concat.js +11 -0
- package/actual/array/instance/copy-within.js +11 -0
- package/actual/array/instance/entries.js +11 -0
- package/actual/array/instance/fill.js +11 -0
- package/actual/array/instance/filter.js +11 -0
- package/actual/array/instance/find-index.js +11 -0
- package/actual/array/instance/find-last-index.js +11 -0
- package/actual/array/instance/find-last.js +11 -0
- package/actual/array/instance/find.js +11 -0
- package/actual/array/instance/flat-map.js +11 -0
- package/actual/array/instance/flat.js +11 -0
- package/actual/array/instance/includes.js +11 -0
- package/actual/array/instance/index-of.js +11 -0
- package/actual/array/instance/join.js +11 -0
- package/actual/array/instance/keys.js +11 -0
- package/actual/array/instance/last-index-of.js +11 -0
- package/actual/array/instance/map.js +11 -0
- package/actual/array/instance/push.js +11 -0
- package/actual/array/instance/reduce-right.js +11 -0
- package/actual/array/instance/reduce.js +11 -0
- package/actual/array/instance/reverse.js +11 -0
- package/actual/array/instance/slice.js +11 -0
- package/actual/array/instance/sort.js +11 -0
- package/actual/array/instance/splice.js +11 -0
- package/actual/array/instance/to-reversed.js +11 -0
- package/actual/array/instance/to-sorted.js +11 -0
- package/actual/array/instance/to-spliced.js +11 -0
- package/actual/array/instance/unshift.js +11 -0
- package/actual/array/instance/values.js +11 -0
- package/actual/array/instance/with.js +11 -0
- package/actual/array/iterator.js +6 -2
- package/actual/array/join.js +4 -2
- package/actual/array/keys.js +5 -2
- package/actual/array/last-index-of.js +4 -2
- package/actual/array/map.js +4 -2
- package/actual/array/of.js +4 -2
- package/actual/array/prototype/at.js +6 -0
- package/actual/array/prototype/concat.js +6 -0
- package/actual/array/prototype/copy-within.js +6 -0
- package/actual/array/prototype/entries.js +7 -0
- package/actual/array/prototype/fill.js +6 -0
- package/actual/array/prototype/filter.js +6 -0
- package/actual/array/prototype/find-index.js +6 -0
- package/actual/array/prototype/find-last-index.js +6 -0
- package/actual/array/prototype/find-last.js +6 -0
- package/actual/array/prototype/find.js +6 -0
- package/actual/array/prototype/flat-map.js +7 -0
- package/actual/array/prototype/flat.js +7 -0
- package/actual/array/prototype/includes.js +6 -0
- package/actual/array/prototype/index-of.js +6 -0
- package/actual/array/prototype/iterator.js +7 -0
- package/actual/array/prototype/join.js +6 -0
- package/actual/array/prototype/keys.js +7 -0
- package/actual/array/prototype/last-index-of.js +6 -0
- package/actual/array/prototype/map.js +6 -0
- package/actual/array/prototype/push.js +6 -0
- package/actual/array/prototype/reduce-right.js +6 -0
- package/actual/array/prototype/reduce.js +6 -0
- package/actual/array/prototype/reverse.js +6 -0
- package/actual/array/prototype/slice.js +6 -0
- package/actual/array/prototype/sort.js +6 -0
- package/actual/array/prototype/splice.js +6 -0
- package/actual/array/prototype/to-reversed.js +6 -0
- package/actual/array/prototype/to-sorted.js +7 -0
- package/actual/array/prototype/to-spliced.js +6 -0
- package/actual/array/prototype/unshift.js +6 -0
- package/actual/array/prototype/values.js +10 -0
- package/actual/array/prototype/with.js +6 -0
- package/actual/array/push.js +4 -2
- package/actual/array/reduce-right.js +4 -2
- package/actual/array/reduce.js +4 -2
- package/actual/array/reverse.js +4 -2
- package/actual/array/slice.js +4 -2
- package/actual/array/sort.js +4 -2
- package/actual/array/splice.js +4 -2
- package/actual/array/to-reversed.js +4 -4
- package/actual/array/to-sorted.js +5 -4
- package/actual/array/to-spliced.js +4 -4
- package/actual/array/unshift.js +4 -2
- package/actual/array/values.js +8 -2
- package/actual/array/with.js +4 -4
- package/actual/array-buffer/constructor.js +11 -5
- package/actual/array-buffer/detached.js +1 -4
- package/actual/array-buffer/index.js +12 -5
- package/actual/array-buffer/is-view.js +4 -2
- package/actual/array-buffer/slice.js +1 -3
- package/actual/array-buffer/transfer-to-fixed-length.js +2 -4
- package/actual/array-buffer/transfer.js +2 -4
- package/actual/async-disposable-stack/constructor.js +12 -6
- package/actual/async-disposable-stack/index.js +12 -6
- package/actual/async-iterator/index.js +6 -18
- package/actual/atob.js +8 -2
- package/actual/btoa.js +8 -2
- package/actual/clear-immediate.js +4 -2
- package/actual/data-view/constructor.js +13 -0
- package/actual/data-view/get-float16.js +1 -4
- package/actual/data-view/index.js +11 -4
- package/actual/data-view/set-float16.js +2 -4
- package/actual/date/index.js +5 -2
- package/actual/date/prototype/to-json.js +6 -0
- package/actual/date/to-json.js +4 -2
- package/actual/disposable-stack/constructor.js +7 -5
- package/actual/disposable-stack/index.js +7 -5
- package/actual/dom-collections/entries.js +4 -0
- package/actual/dom-collections/for-each.js +1 -3
- package/actual/dom-collections/index.js +9 -3
- package/actual/dom-collections/instance/entries.js +21 -0
- package/actual/dom-collections/instance/for-each.js +19 -0
- package/actual/dom-collections/instance/keys.js +21 -0
- package/actual/dom-collections/instance/values.js +21 -0
- package/actual/dom-collections/iterator.js +3 -3
- package/actual/dom-collections/keys.js +4 -0
- package/actual/dom-collections/prototype/entries.js +8 -0
- package/actual/dom-collections/prototype/for-each.js +6 -0
- package/actual/dom-collections/prototype/keys.js +8 -0
- package/actual/dom-collections/prototype/values.js +8 -0
- package/actual/dom-collections/values.js +4 -0
- package/actual/dom-exception/constructor.js +7 -2
- package/actual/dom-exception/index.js +7 -2
- package/actual/error/constructor.js +4 -2
- package/actual/error/index.js +5 -4
- package/actual/error/is-error.js +4 -3
- package/actual/eval-error/constructor.js +6 -0
- package/actual/eval-error/index.js +7 -0
- package/actual/eval-error/is-error.js +6 -0
- package/actual/float32-array/at.js +2 -0
- package/actual/float32-array/constructor.js +46 -0
- package/actual/float32-array/copy-within.js +2 -0
- package/actual/float32-array/entries.js +4 -0
- package/actual/float32-array/every.js +2 -0
- package/actual/float32-array/fill.js +2 -0
- package/actual/float32-array/filter.js +2 -0
- package/actual/float32-array/find-index.js +2 -0
- package/actual/float32-array/find-last-index.js +2 -0
- package/actual/float32-array/find-last.js +2 -0
- package/actual/float32-array/find.js +2 -0
- package/actual/float32-array/for-each.js +2 -0
- package/actual/float32-array/from.js +42 -0
- package/actual/float32-array/includes.js +2 -0
- package/actual/float32-array/index-of.js +2 -0
- package/actual/float32-array/index.js +48 -0
- package/actual/float32-array/iterator.js +4 -0
- package/actual/float32-array/join.js +2 -0
- package/actual/float32-array/keys.js +4 -0
- package/actual/float32-array/last-index-of.js +2 -0
- package/actual/float32-array/map.js +2 -0
- package/actual/float32-array/of.js +40 -0
- package/actual/float32-array/reduce-right.js +2 -0
- package/actual/float32-array/reduce.js +2 -0
- package/actual/float32-array/reverse.js +2 -0
- package/actual/float32-array/set.js +2 -0
- package/actual/float32-array/slice.js +2 -0
- package/actual/float32-array/some.js +2 -0
- package/actual/float32-array/sort.js +2 -0
- package/actual/float32-array/subarray.js +2 -0
- package/actual/float32-array/to-locale-string.js +2 -0
- package/actual/float32-array/to-reversed.js +2 -0
- package/actual/float32-array/to-sorted.js +2 -0
- package/actual/float32-array/to-string.js +2 -0
- package/actual/float32-array/values.js +5 -0
- package/actual/float32-array/with.js +2 -0
- package/actual/float64-array/at.js +2 -0
- package/actual/float64-array/constructor.js +46 -0
- package/actual/float64-array/copy-within.js +2 -0
- package/actual/float64-array/entries.js +4 -0
- package/actual/float64-array/every.js +2 -0
- package/actual/float64-array/fill.js +2 -0
- package/actual/float64-array/filter.js +2 -0
- package/actual/float64-array/find-index.js +2 -0
- package/actual/float64-array/find-last-index.js +2 -0
- package/actual/float64-array/find-last.js +2 -0
- package/actual/float64-array/find.js +2 -0
- package/actual/float64-array/for-each.js +2 -0
- package/actual/float64-array/from.js +42 -0
- package/actual/float64-array/includes.js +2 -0
- package/actual/float64-array/index-of.js +2 -0
- package/actual/float64-array/index.js +48 -0
- package/actual/float64-array/iterator.js +4 -0
- package/actual/float64-array/join.js +2 -0
- package/actual/float64-array/keys.js +4 -0
- package/actual/float64-array/last-index-of.js +2 -0
- package/actual/float64-array/map.js +2 -0
- package/actual/float64-array/of.js +40 -0
- package/actual/float64-array/reduce-right.js +2 -0
- package/actual/float64-array/reduce.js +2 -0
- package/actual/float64-array/reverse.js +2 -0
- package/actual/float64-array/set.js +2 -0
- package/actual/float64-array/slice.js +2 -0
- package/actual/float64-array/some.js +2 -0
- package/actual/float64-array/sort.js +2 -0
- package/actual/float64-array/subarray.js +2 -0
- package/actual/float64-array/to-locale-string.js +2 -0
- package/actual/float64-array/to-reversed.js +2 -0
- package/actual/float64-array/to-sorted.js +2 -0
- package/actual/float64-array/to-string.js +2 -0
- package/actual/float64-array/values.js +5 -0
- package/actual/float64-array/with.js +2 -0
- package/actual/function/index.js +5 -2
- package/actual/function/instance/name.js +9 -0
- package/actual/function/name.js +4 -2
- package/actual/get-iterator-method.js +7 -2
- package/actual/get-iterator.js +7 -2
- package/actual/global-this.js +4 -2
- package/actual/index.js +333 -3
- package/actual/instance/at.js +13 -2
- package/actual/instance/code-point-at.js +10 -2
- package/actual/instance/concat.js +9 -2
- package/actual/instance/copy-within.js +9 -2
- package/actual/instance/ends-with.js +10 -2
- package/actual/instance/entries.js +21 -2
- package/actual/instance/fill.js +9 -2
- package/actual/instance/filter.js +9 -2
- package/actual/instance/find-index.js +9 -2
- package/actual/instance/find-last-index.js +4 -3
- package/actual/instance/find-last.js +4 -3
- package/actual/instance/find.js +9 -2
- package/actual/instance/flags.js +9 -2
- package/actual/instance/flat-map.js +9 -2
- package/actual/instance/flat.js +9 -2
- package/actual/instance/for-each.js +17 -2
- package/actual/instance/includes.js +13 -2
- package/actual/instance/index-of.js +9 -2
- package/actual/instance/is-well-formed.js +10 -2
- package/actual/instance/join.js +11 -0
- package/actual/instance/keys.js +21 -2
- package/actual/instance/last-index-of.js +9 -2
- package/actual/instance/map.js +9 -2
- package/actual/instance/match-all.js +10 -2
- package/actual/instance/name.js +9 -0
- package/actual/instance/pad-end.js +10 -2
- package/actual/instance/pad-start.js +10 -2
- package/actual/instance/push.js +9 -2
- package/actual/instance/reduce-right.js +9 -2
- package/actual/instance/reduce.js +9 -2
- package/actual/instance/repeat.js +10 -2
- package/actual/instance/replace-all.js +10 -2
- package/actual/instance/reverse.js +9 -2
- package/actual/instance/slice.js +9 -2
- package/actual/instance/sort.js +9 -2
- package/actual/instance/splice.js +9 -2
- package/actual/instance/starts-with.js +10 -2
- package/actual/instance/to-exponential.js +12 -0
- package/actual/instance/to-fixed.js +12 -0
- package/actual/instance/to-reversed.js +4 -3
- package/actual/instance/to-sorted.js +4 -3
- package/actual/instance/to-spliced.js +4 -3
- package/actual/instance/to-well-formed.js +10 -2
- package/actual/instance/trim-end.js +10 -2
- package/actual/instance/trim-left.js +10 -2
- package/actual/instance/trim-right.js +10 -2
- package/actual/instance/trim-start.js +10 -2
- package/actual/instance/trim.js +10 -2
- package/actual/instance/unshift.js +9 -2
- package/actual/instance/values.js +24 -2
- package/actual/instance/with.js +4 -3
- package/actual/int16-array/at.js +2 -0
- package/actual/int16-array/constructor.js +46 -0
- package/actual/int16-array/copy-within.js +2 -0
- package/actual/int16-array/entries.js +4 -0
- package/actual/int16-array/every.js +2 -0
- package/actual/int16-array/fill.js +2 -0
- package/actual/int16-array/filter.js +2 -0
- package/actual/int16-array/find-index.js +2 -0
- package/actual/int16-array/find-last-index.js +2 -0
- package/actual/int16-array/find-last.js +2 -0
- package/actual/int16-array/find.js +2 -0
- package/actual/int16-array/for-each.js +2 -0
- package/actual/int16-array/from.js +42 -0
- package/actual/int16-array/includes.js +2 -0
- package/actual/int16-array/index-of.js +2 -0
- package/actual/int16-array/index.js +48 -0
- package/actual/int16-array/iterator.js +4 -0
- package/actual/int16-array/join.js +2 -0
- package/actual/int16-array/keys.js +4 -0
- package/actual/int16-array/last-index-of.js +2 -0
- package/actual/int16-array/map.js +2 -0
- package/actual/int16-array/of.js +40 -0
- package/actual/int16-array/reduce-right.js +2 -0
- package/actual/int16-array/reduce.js +2 -0
- package/actual/int16-array/reverse.js +2 -0
- package/actual/int16-array/set.js +2 -0
- package/actual/int16-array/slice.js +2 -0
- package/actual/int16-array/some.js +2 -0
- package/actual/int16-array/sort.js +2 -0
- package/actual/int16-array/subarray.js +2 -0
- package/actual/int16-array/to-locale-string.js +2 -0
- package/actual/int16-array/to-reversed.js +2 -0
- package/actual/int16-array/to-sorted.js +2 -0
- package/actual/int16-array/to-string.js +2 -0
- package/actual/int16-array/values.js +5 -0
- package/actual/int16-array/with.js +2 -0
- package/actual/int32-array/at.js +2 -0
- package/actual/int32-array/constructor.js +46 -0
- package/actual/int32-array/copy-within.js +2 -0
- package/actual/int32-array/entries.js +4 -0
- package/actual/int32-array/every.js +2 -0
- package/actual/int32-array/fill.js +2 -0
- package/actual/int32-array/filter.js +2 -0
- package/actual/int32-array/find-index.js +2 -0
- package/actual/int32-array/find-last-index.js +2 -0
- package/actual/int32-array/find-last.js +2 -0
- package/actual/int32-array/find.js +2 -0
- package/actual/int32-array/for-each.js +2 -0
- package/actual/int32-array/from.js +42 -0
- package/actual/int32-array/includes.js +2 -0
- package/actual/int32-array/index-of.js +2 -0
- package/actual/int32-array/index.js +48 -0
- package/actual/int32-array/iterator.js +4 -0
- package/actual/int32-array/join.js +2 -0
- package/actual/int32-array/keys.js +4 -0
- package/actual/int32-array/last-index-of.js +2 -0
- package/actual/int32-array/map.js +2 -0
- package/actual/int32-array/of.js +40 -0
- package/actual/int32-array/reduce-right.js +2 -0
- package/actual/int32-array/reduce.js +2 -0
- package/actual/int32-array/reverse.js +2 -0
- package/actual/int32-array/set.js +2 -0
- package/actual/int32-array/slice.js +2 -0
- package/actual/int32-array/some.js +2 -0
- package/actual/int32-array/sort.js +2 -0
- package/actual/int32-array/subarray.js +2 -0
- package/actual/int32-array/to-locale-string.js +2 -0
- package/actual/int32-array/to-reversed.js +2 -0
- package/actual/int32-array/to-sorted.js +2 -0
- package/actual/int32-array/to-string.js +2 -0
- package/actual/int32-array/values.js +5 -0
- package/actual/int32-array/with.js +2 -0
- package/actual/int8-array/at.js +2 -0
- package/actual/int8-array/constructor.js +46 -0
- package/actual/int8-array/copy-within.js +2 -0
- package/actual/int8-array/entries.js +4 -0
- package/actual/int8-array/every.js +2 -0
- package/actual/int8-array/fill.js +2 -0
- package/actual/int8-array/filter.js +2 -0
- package/actual/int8-array/find-index.js +2 -0
- package/actual/int8-array/find-last-index.js +2 -0
- package/actual/int8-array/find-last.js +2 -0
- package/actual/int8-array/find.js +2 -0
- package/actual/int8-array/for-each.js +2 -0
- package/actual/int8-array/from.js +42 -0
- package/actual/int8-array/includes.js +2 -0
- package/actual/int8-array/index-of.js +2 -0
- package/actual/int8-array/index.js +48 -0
- package/actual/int8-array/iterator.js +4 -0
- package/actual/int8-array/join.js +2 -0
- package/actual/int8-array/keys.js +4 -0
- package/actual/int8-array/last-index-of.js +2 -0
- package/actual/int8-array/map.js +2 -0
- package/actual/int8-array/of.js +40 -0
- package/actual/int8-array/reduce-right.js +2 -0
- package/actual/int8-array/reduce.js +2 -0
- package/actual/int8-array/reverse.js +2 -0
- package/actual/int8-array/set.js +2 -0
- package/actual/int8-array/slice.js +2 -0
- package/actual/int8-array/some.js +2 -0
- package/actual/int8-array/sort.js +2 -0
- package/actual/int8-array/subarray.js +2 -0
- package/actual/int8-array/to-locale-string.js +2 -0
- package/actual/int8-array/to-reversed.js +2 -0
- package/actual/int8-array/to-sorted.js +2 -0
- package/actual/int8-array/to-string.js +2 -0
- package/actual/int8-array/values.js +5 -0
- package/actual/int8-array/with.js +2 -0
- package/actual/is-iterable.js +7 -2
- package/actual/iterator/concat.js +21 -3
- package/actual/iterator/constructor.js +22 -0
- package/actual/iterator/drop.js +6 -4
- package/actual/iterator/every.js +9 -4
- package/actual/iterator/filter.js +6 -4
- package/actual/iterator/find.js +9 -4
- package/actual/iterator/flat-map.js +9 -4
- package/actual/iterator/for-each.js +9 -4
- package/actual/iterator/from.js +21 -18
- package/actual/iterator/index.js +23 -20
- package/actual/iterator/map.js +6 -4
- package/actual/iterator/prototype/drop.js +8 -0
- package/actual/iterator/prototype/every.js +11 -0
- package/actual/iterator/prototype/filter.js +8 -0
- package/actual/iterator/prototype/find.js +11 -0
- package/actual/iterator/prototype/flat-map.js +11 -0
- package/actual/iterator/prototype/for-each.js +11 -0
- package/actual/iterator/prototype/map.js +8 -0
- package/actual/iterator/prototype/reduce.js +11 -0
- package/actual/iterator/prototype/some.js +11 -0
- package/actual/iterator/prototype/take.js +8 -0
- package/actual/iterator/prototype/to-array.js +11 -0
- package/actual/iterator/reduce.js +9 -4
- package/actual/iterator/some.js +9 -4
- package/actual/iterator/take.js +6 -4
- package/actual/iterator/to-array.js +9 -4
- package/actual/iterator/zip-keyed.js +6 -6
- package/actual/iterator/zip.js +5 -4
- package/actual/json/index.js +10 -5
- package/actual/json/is-raw-json.js +4 -3
- package/actual/json/parse.js +4 -3
- package/actual/json/raw-json.js +4 -4
- package/actual/json/stringify.js +5 -2
- package/actual/map/constructor.js +13 -0
- package/actual/map/get-or-insert-computed.js +9 -3
- package/actual/map/get-or-insert.js +9 -3
- package/actual/map/group-by.js +12 -5
- package/actual/map/index.js +12 -5
- package/actual/map/prototype/get-or-insert-computed.js +11 -0
- package/actual/map/prototype/get-or-insert.js +11 -0
- package/actual/math/acosh.js +4 -2
- package/actual/math/asinh.js +4 -2
- package/actual/math/atanh.js +4 -2
- package/actual/math/cbrt.js +4 -2
- package/actual/math/clz32.js +4 -2
- package/actual/math/cosh.js +4 -2
- package/actual/math/expm1.js +4 -2
- package/actual/math/f16round.js +4 -3
- package/actual/math/fround.js +4 -2
- package/actual/math/hypot.js +4 -2
- package/actual/math/imul.js +4 -2
- package/actual/math/index.js +27 -4
- package/actual/math/log10.js +4 -2
- package/actual/math/log1p.js +4 -2
- package/actual/math/log2.js +4 -2
- package/actual/math/sign.js +4 -2
- package/actual/math/sinh.js +4 -2
- package/actual/math/sum-precise.js +8 -3
- package/actual/math/tanh.js +4 -2
- package/actual/math/trunc.js +4 -2
- package/actual/number/constructor.js +4 -2
- package/actual/number/epsilon.js +4 -2
- package/actual/number/index.js +18 -2
- package/actual/number/instance/to-exponential.js +12 -0
- package/actual/number/instance/to-fixed.js +12 -0
- package/actual/number/is-finite.js +4 -2
- package/actual/number/is-integer.js +4 -2
- package/actual/number/is-nan.js +4 -2
- package/actual/number/is-safe-integer.js +4 -2
- package/actual/number/max-safe-integer.js +4 -2
- package/actual/number/min-safe-integer.js +4 -2
- package/actual/number/parse-float.js +5 -2
- package/actual/number/parse-int.js +5 -2
- package/actual/number/prototype/to-exponential.js +7 -0
- package/actual/number/prototype/to-fixed.js +7 -0
- package/actual/number/to-exponential.js +5 -2
- package/actual/number/to-fixed.js +5 -2
- package/actual/object/assign.js +4 -2
- package/actual/object/create.js +5 -2
- package/actual/object/define-getter.js +4 -2
- package/actual/object/define-properties.js +5 -2
- package/actual/object/define-property.js +5 -2
- package/actual/object/define-setter.js +4 -2
- package/actual/object/entries.js +4 -2
- package/actual/object/freeze.js +4 -2
- package/actual/object/from-entries.js +8 -2
- package/actual/object/get-own-property-descriptor.js +7 -2
- package/actual/object/get-own-property-descriptors.js +4 -2
- package/actual/object/get-own-property-names.js +7 -2
- package/actual/object/get-own-property-symbols.js +4 -2
- package/actual/object/get-prototype-of.js +4 -2
- package/actual/object/group-by.js +8 -3
- package/actual/object/has-own.js +4 -2
- package/actual/object/index.js +32 -3
- package/actual/object/is-extensible.js +4 -2
- package/actual/object/is-frozen.js +4 -2
- package/actual/object/is-sealed.js +4 -2
- package/actual/object/is.js +4 -2
- package/actual/object/keys.js +4 -2
- package/actual/object/lookup-getter.js +4 -2
- package/actual/object/lookup-setter.js +4 -2
- package/actual/object/prevent-extensions.js +4 -2
- package/actual/object/proto.js +1 -3
- package/actual/object/prototype/define-getter.js +6 -0
- package/actual/object/prototype/define-setter.js +6 -0
- package/actual/object/prototype/lookup-getter.js +6 -0
- package/actual/object/prototype/lookup-setter.js +6 -0
- package/actual/object/prototype/to-string.js +6 -0
- package/actual/object/seal.js +4 -2
- package/actual/object/set-prototype-of.js +4 -2
- package/actual/object/to-string.js +4 -2
- package/actual/object/values.js +4 -2
- package/actual/parse-float.js +4 -2
- package/actual/parse-int.js +4 -2
- package/actual/promise/all-settled.js +19 -2
- package/actual/promise/all.js +21 -0
- package/actual/promise/any.js +20 -2
- package/actual/promise/catch.js +8 -0
- package/actual/promise/constructor.js +9 -0
- package/actual/promise/finally.js +6 -2
- package/actual/promise/index.js +19 -5
- package/actual/promise/prototype/catch.js +8 -0
- package/actual/promise/prototype/finally.js +8 -0
- package/actual/promise/race.js +21 -0
- package/actual/promise/reject.js +17 -0
- package/actual/promise/resolve.js +17 -0
- package/actual/promise/try.js +15 -4
- package/actual/promise/with-resolvers.js +15 -4
- package/actual/queue-microtask.js +4 -2
- package/actual/range-error/constructor.js +6 -0
- package/actual/range-error/index.js +7 -0
- package/actual/range-error/is-error.js +6 -0
- package/actual/reference-error/constructor.js +6 -0
- package/actual/reference-error/index.js +7 -0
- package/actual/reference-error/is-error.js +6 -0
- package/actual/reflect/apply.js +4 -2
- package/actual/reflect/construct.js +4 -2
- package/actual/reflect/define-property.js +4 -2
- package/actual/reflect/delete-property.js +4 -2
- package/actual/reflect/get-own-property-descriptor.js +4 -2
- package/actual/reflect/get-prototype-of.js +4 -2
- package/actual/reflect/get.js +4 -2
- package/actual/reflect/has.js +4 -2
- package/actual/reflect/index.js +18 -2
- package/actual/reflect/is-extensible.js +4 -2
- package/actual/reflect/own-keys.js +4 -2
- package/actual/reflect/prevent-extensions.js +4 -2
- package/actual/reflect/set-prototype-of.js +4 -2
- package/actual/reflect/set.js +4 -2
- package/actual/regexp/constructor.js +4 -3
- package/actual/regexp/dot-all.js +3 -3
- package/actual/regexp/escape.js +6 -3
- package/actual/regexp/exec.js +2 -0
- package/actual/regexp/flags.js +4 -2
- package/actual/regexp/index.js +14 -4
- package/actual/regexp/instance/flags.js +11 -0
- package/actual/regexp/match.js +2 -3
- package/actual/regexp/replace.js +2 -3
- package/actual/regexp/search.js +2 -3
- package/actual/regexp/split.js +2 -3
- package/actual/regexp/sticky.js +3 -3
- package/actual/regexp/test.js +5 -2
- package/actual/regexp/to-string.js +1 -3
- package/actual/self.js +4 -2
- package/actual/set/constructor.js +18 -0
- package/actual/set/difference.js +9 -3
- package/actual/set/index.js +16 -9
- package/actual/set/intersection.js +9 -3
- package/actual/set/is-disjoint-from.js +9 -3
- package/actual/set/is-subset-of.js +9 -3
- package/actual/set/is-superset-of.js +9 -3
- package/actual/set/prototype/difference.js +11 -0
- package/actual/set/prototype/intersection.js +11 -0
- package/actual/set/prototype/is-disjoint-from.js +11 -0
- package/actual/set/prototype/is-subset-of.js +11 -0
- package/actual/set/prototype/is-superset-of.js +11 -0
- package/actual/set/prototype/symmetric-difference.js +11 -0
- package/actual/set/prototype/union.js +11 -0
- package/actual/set/symmetric-difference.js +9 -3
- package/actual/set/union.js +9 -3
- package/actual/set-immediate.js +4 -2
- package/actual/string/anchor.js +4 -2
- package/actual/string/at.js +4 -2
- package/actual/string/big.js +4 -2
- package/actual/string/blink.js +4 -2
- package/actual/string/bold.js +4 -2
- package/actual/string/code-point-at.js +4 -2
- package/actual/string/ends-with.js +4 -2
- package/actual/string/fixed.js +4 -2
- package/actual/string/fontcolor.js +4 -2
- package/actual/string/fontsize.js +4 -2
- package/actual/string/from-code-point.js +4 -2
- package/actual/string/includes.js +4 -2
- package/actual/string/index.js +41 -5
- package/actual/string/instance/anchor.js +12 -0
- package/actual/string/instance/at.js +12 -0
- package/actual/string/instance/big.js +12 -0
- package/actual/string/instance/blink.js +12 -0
- package/actual/string/instance/bold.js +12 -0
- package/actual/string/instance/code-point-at.js +12 -0
- package/actual/string/instance/ends-with.js +12 -0
- package/actual/string/instance/fixed.js +12 -0
- package/actual/string/instance/fontcolor.js +12 -0
- package/actual/string/instance/fontsize.js +12 -0
- package/actual/string/instance/includes.js +12 -0
- package/actual/string/instance/is-well-formed.js +12 -0
- package/actual/string/instance/italics.js +12 -0
- package/actual/string/instance/link.js +12 -0
- package/actual/string/instance/match-all.js +12 -0
- package/actual/string/instance/pad-end.js +12 -0
- package/actual/string/instance/pad-start.js +12 -0
- package/actual/string/instance/repeat.js +12 -0
- package/actual/string/instance/replace-all.js +12 -0
- package/actual/string/instance/small.js +12 -0
- package/actual/string/instance/starts-with.js +12 -0
- package/actual/string/instance/strike.js +12 -0
- package/actual/string/instance/sub.js +12 -0
- package/actual/string/instance/sup.js +12 -0
- package/actual/string/instance/to-well-formed.js +12 -0
- package/actual/string/instance/trim-end.js +12 -0
- package/actual/string/instance/trim-left.js +12 -0
- package/actual/string/instance/trim-right.js +12 -0
- package/actual/string/instance/trim-start.js +12 -0
- package/actual/string/instance/trim.js +12 -0
- package/actual/string/is-well-formed.js +3 -4
- package/actual/string/italics.js +4 -2
- package/actual/string/iterator.js +6 -2
- package/actual/string/link.js +4 -2
- package/actual/string/match-all.js +6 -2
- package/actual/string/match.js +2 -3
- package/actual/string/pad-end.js +5 -2
- package/actual/string/pad-start.js +5 -2
- package/actual/string/prototype/anchor.js +6 -0
- package/actual/string/prototype/at.js +6 -0
- package/actual/string/prototype/big.js +6 -0
- package/actual/string/prototype/blink.js +6 -0
- package/actual/string/prototype/bold.js +6 -0
- package/actual/string/prototype/code-point-at.js +6 -0
- package/actual/string/prototype/ends-with.js +6 -0
- package/actual/string/prototype/fixed.js +6 -0
- package/actual/string/prototype/fontcolor.js +6 -0
- package/actual/string/prototype/fontsize.js +6 -0
- package/actual/string/prototype/includes.js +6 -0
- package/actual/string/prototype/is-well-formed.js +6 -0
- package/actual/string/prototype/italics.js +6 -0
- package/actual/string/prototype/iterator.js +7 -0
- package/actual/string/prototype/link.js +6 -0
- package/actual/string/prototype/match-all.js +8 -0
- package/actual/string/prototype/pad-end.js +7 -0
- package/actual/string/prototype/pad-start.js +7 -0
- package/actual/string/prototype/repeat.js +6 -0
- package/actual/string/prototype/replace-all.js +8 -0
- package/actual/string/prototype/small.js +6 -0
- package/actual/string/prototype/starts-with.js +6 -0
- package/actual/string/prototype/strike.js +6 -0
- package/actual/string/prototype/sub.js +6 -0
- package/actual/string/prototype/sup.js +6 -0
- package/actual/string/prototype/to-well-formed.js +6 -0
- package/actual/string/prototype/trim-end.js +6 -0
- package/actual/string/prototype/trim-left.js +6 -0
- package/actual/string/prototype/trim-right.js +6 -0
- package/actual/string/prototype/trim-start.js +6 -0
- package/actual/string/prototype/trim.js +6 -0
- package/actual/string/raw.js +4 -2
- package/actual/string/repeat.js +4 -2
- package/actual/string/replace-all.js +6 -2
- package/actual/string/replace.js +2 -3
- package/actual/string/search.js +2 -3
- package/actual/string/small.js +4 -2
- package/actual/string/split.js +2 -3
- package/actual/string/starts-with.js +4 -2
- package/actual/string/strike.js +4 -2
- package/actual/string/sub.js +4 -2
- package/actual/string/sup.js +4 -2
- package/actual/string/to-well-formed.js +3 -4
- package/actual/string/trim-end.js +4 -2
- package/actual/string/trim-left.js +4 -2
- package/actual/string/trim-right.js +4 -2
- package/actual/string/trim-start.js +4 -2
- package/actual/string/trim.js +4 -2
- package/actual/structured-clone.js +13 -2
- package/actual/suppressed-error/constructor.js +6 -0
- package/actual/suppressed-error/index.js +7 -0
- package/actual/suppressed-error/is-error.js +6 -0
- package/actual/symbol/async-dispose.js +10 -3
- package/actual/symbol/async-iterator.js +4 -2
- package/actual/symbol/constructor.js +8 -0
- package/actual/symbol/description.js +1 -3
- package/actual/symbol/dispose.js +5 -3
- package/actual/symbol/for.js +7 -2
- package/actual/symbol/has-instance.js +5 -2
- package/actual/symbol/index.js +23 -6
- package/actual/symbol/is-concat-spreadable.js +4 -2
- package/actual/symbol/iterator.js +8 -2
- package/actual/symbol/key-for.js +4 -2
- package/actual/symbol/match-all.js +4 -2
- package/actual/symbol/match.js +4 -2
- package/actual/symbol/metadata.js +3 -2
- package/actual/symbol/replace.js +4 -2
- package/actual/symbol/search.js +4 -2
- package/actual/symbol/species.js +4 -2
- package/actual/symbol/split.js +4 -2
- package/actual/symbol/to-primitive.js +5 -2
- package/actual/symbol/to-string-tag.js +7 -2
- package/actual/symbol/unscopables.js +4 -2
- package/actual/syntax-error/constructor.js +6 -0
- package/actual/syntax-error/index.js +7 -0
- package/actual/syntax-error/is-error.js +6 -0
- package/actual/type-error/constructor.js +6 -0
- package/actual/type-error/index.js +7 -0
- package/actual/type-error/is-error.js +6 -0
- package/actual/typed-array/at.js +1 -3
- package/actual/typed-array/constructors.js +18 -0
- package/actual/typed-array/copy-within.js +1 -3
- package/actual/typed-array/entries.js +3 -3
- package/actual/typed-array/every.js +1 -3
- package/actual/typed-array/fill.js +1 -3
- package/actual/typed-array/filter.js +1 -3
- package/actual/typed-array/find-index.js +1 -3
- package/actual/typed-array/find-last-index.js +1 -4
- package/actual/typed-array/find-last.js +1 -4
- package/actual/typed-array/find.js +1 -3
- package/actual/typed-array/for-each.js +1 -3
- package/actual/typed-array/from-base64.js +43 -4
- package/actual/typed-array/from-hex.js +43 -4
- package/actual/typed-array/from.js +45 -3
- package/actual/typed-array/includes.js +1 -3
- package/actual/typed-array/index-of.js +1 -3
- package/actual/typed-array/index.js +60 -15
- package/actual/typed-array/iterator.js +3 -3
- package/actual/typed-array/join.js +1 -3
- package/actual/typed-array/keys.js +3 -3
- package/actual/typed-array/last-index-of.js +1 -3
- package/actual/typed-array/map.js +1 -3
- package/actual/typed-array/methods.js +48 -16
- package/actual/typed-array/of.js +43 -3
- package/actual/typed-array/reduce-right.js +1 -3
- package/actual/typed-array/reduce.js +1 -3
- package/actual/typed-array/reverse.js +1 -3
- package/actual/typed-array/set-from-base64.js +1 -4
- package/actual/typed-array/set-from-hex.js +1 -4
- package/actual/typed-array/set.js +1 -3
- package/actual/typed-array/slice.js +1 -3
- package/actual/typed-array/some.js +1 -3
- package/actual/typed-array/sort.js +1 -3
- package/actual/typed-array/subarray.js +1 -3
- package/actual/typed-array/to-base64.js +1 -4
- package/actual/typed-array/to-hex.js +1 -4
- package/actual/typed-array/to-locale-string.js +1 -3
- package/actual/typed-array/to-reversed.js +1 -5
- package/actual/typed-array/to-sorted.js +1 -5
- package/actual/typed-array/to-string.js +1 -3
- package/actual/typed-array/values.js +4 -3
- package/actual/typed-array/with.js +1 -5
- package/actual/uint16-array/at.js +2 -0
- package/actual/uint16-array/constructor.js +46 -0
- package/actual/uint16-array/copy-within.js +2 -0
- package/actual/uint16-array/entries.js +4 -0
- package/actual/uint16-array/every.js +2 -0
- package/actual/uint16-array/fill.js +2 -0
- package/actual/uint16-array/filter.js +2 -0
- package/actual/uint16-array/find-index.js +2 -0
- package/actual/uint16-array/find-last-index.js +2 -0
- package/actual/uint16-array/find-last.js +2 -0
- package/actual/uint16-array/find.js +2 -0
- package/actual/uint16-array/for-each.js +2 -0
- package/actual/uint16-array/from.js +42 -0
- package/actual/uint16-array/includes.js +2 -0
- package/actual/uint16-array/index-of.js +2 -0
- package/actual/uint16-array/index.js +48 -0
- package/actual/uint16-array/iterator.js +4 -0
- package/actual/uint16-array/join.js +2 -0
- package/actual/uint16-array/keys.js +4 -0
- package/actual/uint16-array/last-index-of.js +2 -0
- package/actual/uint16-array/map.js +2 -0
- package/actual/uint16-array/of.js +40 -0
- package/actual/uint16-array/reduce-right.js +2 -0
- package/actual/uint16-array/reduce.js +2 -0
- package/actual/uint16-array/reverse.js +2 -0
- package/actual/uint16-array/set.js +2 -0
- package/actual/uint16-array/slice.js +2 -0
- package/actual/uint16-array/some.js +2 -0
- package/actual/uint16-array/sort.js +2 -0
- package/actual/uint16-array/subarray.js +2 -0
- package/actual/uint16-array/to-locale-string.js +2 -0
- package/actual/uint16-array/to-reversed.js +2 -0
- package/actual/uint16-array/to-sorted.js +2 -0
- package/actual/uint16-array/to-string.js +2 -0
- package/actual/uint16-array/values.js +5 -0
- package/actual/uint16-array/with.js +2 -0
- package/actual/uint32-array/at.js +2 -0
- package/actual/uint32-array/constructor.js +46 -0
- package/actual/uint32-array/copy-within.js +2 -0
- package/actual/uint32-array/entries.js +4 -0
- package/actual/uint32-array/every.js +2 -0
- package/actual/uint32-array/fill.js +2 -0
- package/actual/uint32-array/filter.js +2 -0
- package/actual/uint32-array/find-index.js +2 -0
- package/actual/uint32-array/find-last-index.js +2 -0
- package/actual/uint32-array/find-last.js +2 -0
- package/actual/uint32-array/find.js +2 -0
- package/actual/uint32-array/for-each.js +2 -0
- package/actual/uint32-array/from.js +42 -0
- package/actual/uint32-array/includes.js +2 -0
- package/actual/uint32-array/index-of.js +2 -0
- package/actual/uint32-array/index.js +48 -0
- package/actual/uint32-array/iterator.js +4 -0
- package/actual/uint32-array/join.js +2 -0
- package/actual/uint32-array/keys.js +4 -0
- package/actual/uint32-array/last-index-of.js +2 -0
- package/actual/uint32-array/map.js +2 -0
- package/actual/uint32-array/of.js +40 -0
- package/actual/uint32-array/reduce-right.js +2 -0
- package/actual/uint32-array/reduce.js +2 -0
- package/actual/uint32-array/reverse.js +2 -0
- package/actual/uint32-array/set.js +2 -0
- package/actual/uint32-array/slice.js +2 -0
- package/actual/uint32-array/some.js +2 -0
- package/actual/uint32-array/sort.js +2 -0
- package/actual/uint32-array/subarray.js +2 -0
- package/actual/uint32-array/to-locale-string.js +2 -0
- package/actual/uint32-array/to-reversed.js +2 -0
- package/actual/uint32-array/to-sorted.js +2 -0
- package/actual/uint32-array/to-string.js +2 -0
- package/actual/uint32-array/values.js +5 -0
- package/actual/uint32-array/with.js +2 -0
- package/actual/uint8-array/at.js +2 -0
- package/actual/uint8-array/constructor.js +50 -0
- package/actual/uint8-array/copy-within.js +2 -0
- package/actual/uint8-array/entries.js +4 -0
- package/actual/uint8-array/every.js +2 -0
- package/actual/uint8-array/fill.js +2 -0
- package/actual/uint8-array/filter.js +2 -0
- package/actual/uint8-array/find-index.js +2 -0
- package/actual/uint8-array/find-last-index.js +2 -0
- package/actual/uint8-array/find-last.js +2 -0
- package/actual/uint8-array/find.js +2 -0
- package/actual/uint8-array/for-each.js +2 -0
- package/actual/uint8-array/from-base64.js +44 -0
- package/actual/uint8-array/from-hex.js +44 -0
- package/actual/uint8-array/from.js +46 -0
- package/actual/uint8-array/includes.js +2 -0
- package/actual/uint8-array/index-of.js +2 -0
- package/actual/uint8-array/index.js +54 -0
- package/actual/uint8-array/iterator.js +4 -0
- package/actual/uint8-array/join.js +2 -0
- package/actual/uint8-array/keys.js +4 -0
- package/actual/uint8-array/last-index-of.js +2 -0
- package/actual/uint8-array/map.js +2 -0
- package/actual/uint8-array/of.js +44 -0
- package/actual/uint8-array/reduce-right.js +2 -0
- package/actual/uint8-array/reduce.js +2 -0
- package/actual/uint8-array/reverse.js +2 -0
- package/actual/uint8-array/set-from-base64.js +2 -0
- package/actual/uint8-array/set-from-hex.js +2 -0
- package/actual/uint8-array/set.js +2 -0
- package/actual/uint8-array/slice.js +2 -0
- package/actual/uint8-array/some.js +2 -0
- package/actual/uint8-array/sort.js +2 -0
- package/actual/uint8-array/subarray.js +2 -0
- package/actual/uint8-array/to-base64.js +2 -0
- package/actual/uint8-array/to-hex.js +2 -0
- package/actual/uint8-array/to-locale-string.js +2 -0
- package/actual/uint8-array/to-reversed.js +2 -0
- package/actual/uint8-array/to-sorted.js +2 -0
- package/actual/uint8-array/to-string.js +2 -0
- package/actual/uint8-array/values.js +5 -0
- package/actual/uint8-array/with.js +2 -0
- package/actual/uint8-clamped-array/at.js +2 -0
- package/actual/uint8-clamped-array/constructor.js +46 -0
- package/actual/uint8-clamped-array/copy-within.js +2 -0
- package/actual/uint8-clamped-array/entries.js +4 -0
- package/actual/uint8-clamped-array/every.js +2 -0
- package/actual/uint8-clamped-array/fill.js +2 -0
- package/actual/uint8-clamped-array/filter.js +2 -0
- package/actual/uint8-clamped-array/find-index.js +2 -0
- package/actual/uint8-clamped-array/find-last-index.js +2 -0
- package/actual/uint8-clamped-array/find-last.js +2 -0
- package/actual/uint8-clamped-array/find.js +2 -0
- package/actual/uint8-clamped-array/for-each.js +2 -0
- package/actual/uint8-clamped-array/from.js +42 -0
- package/actual/uint8-clamped-array/includes.js +2 -0
- package/actual/uint8-clamped-array/index-of.js +2 -0
- package/actual/uint8-clamped-array/index.js +48 -0
- package/actual/uint8-clamped-array/iterator.js +4 -0
- package/actual/uint8-clamped-array/join.js +2 -0
- package/actual/uint8-clamped-array/keys.js +4 -0
- package/actual/uint8-clamped-array/last-index-of.js +2 -0
- package/actual/uint8-clamped-array/map.js +2 -0
- package/actual/uint8-clamped-array/of.js +40 -0
- package/actual/uint8-clamped-array/reduce-right.js +2 -0
- package/actual/uint8-clamped-array/reduce.js +2 -0
- package/actual/uint8-clamped-array/reverse.js +2 -0
- package/actual/uint8-clamped-array/set.js +2 -0
- package/actual/uint8-clamped-array/slice.js +2 -0
- package/actual/uint8-clamped-array/some.js +2 -0
- package/actual/uint8-clamped-array/sort.js +2 -0
- package/actual/uint8-clamped-array/subarray.js +2 -0
- package/actual/uint8-clamped-array/to-locale-string.js +2 -0
- package/actual/uint8-clamped-array/to-reversed.js +2 -0
- package/actual/uint8-clamped-array/to-sorted.js +2 -0
- package/actual/uint8-clamped-array/to-string.js +2 -0
- package/actual/uint8-clamped-array/values.js +5 -0
- package/actual/uint8-clamped-array/with.js +2 -0
- package/actual/uri-error/constructor.js +6 -0
- package/actual/uri-error/index.js +7 -0
- package/actual/uri-error/is-error.js +6 -0
- package/actual/url/can-parse.js +13 -2
- package/actual/url/constructor.js +18 -0
- package/actual/url/index.js +18 -2
- package/actual/url/parse.js +13 -2
- package/actual/url/to-json.js +10 -3
- package/actual/url-search-params/constructor.js +14 -0
- package/actual/url-search-params/index.js +12 -2
- package/actual/weak-map/constructor.js +12 -0
- package/actual/weak-map/get-or-insert-computed.js +9 -3
- package/actual/weak-map/get-or-insert.js +9 -3
- package/actual/weak-map/index.js +10 -4
- package/actual/weak-map/prototype/get-or-insert-computed.js +11 -0
- package/actual/weak-map/prototype/get-or-insert.js +11 -0
- package/actual/weak-set/constructor.js +10 -0
- package/actual/weak-set/index.js +8 -2
- package/configurator.js +0 -11
- package/es/aggregate-error/constructor.js +10 -0
- package/es/aggregate-error/index.js +11 -0
- package/es/aggregate-error/is-error.js +6 -0
- package/es/array/at.js +1 -0
- package/es/array/concat.js +1 -0
- package/es/array/copy-within.js +1 -0
- package/es/array/entries.js +2 -1
- package/es/array/fill.js +1 -0
- package/es/array/filter.js +1 -0
- package/es/array/find-index.js +1 -0
- package/es/array/find-last-index.js +1 -0
- package/es/array/find-last.js +1 -0
- package/es/array/find.js +1 -0
- package/es/array/flat-map.js +1 -0
- package/es/array/flat.js +1 -0
- package/es/array/from-async.js +8 -4
- package/es/array/from.js +6 -3
- package/es/array/includes.js +1 -0
- package/es/array/index-of.js +1 -0
- package/es/array/index.js +13 -10
- package/es/array/instance/at.js +11 -0
- package/es/array/instance/concat.js +11 -0
- package/es/array/instance/copy-within.js +11 -0
- package/es/array/instance/entries.js +11 -0
- package/es/array/instance/fill.js +11 -0
- package/es/array/instance/filter.js +11 -0
- package/es/array/instance/find-index.js +11 -0
- package/es/array/instance/find-last-index.js +11 -0
- package/es/array/instance/find-last.js +11 -0
- package/es/array/instance/find.js +11 -0
- package/es/array/instance/flat-map.js +11 -0
- package/es/array/instance/flat.js +11 -0
- package/es/array/instance/includes.js +11 -0
- package/es/array/instance/index-of.js +11 -0
- package/es/array/instance/join.js +11 -0
- package/es/array/instance/keys.js +11 -0
- package/es/array/instance/last-index-of.js +11 -0
- package/es/array/instance/map.js +11 -0
- package/es/array/instance/push.js +11 -0
- package/es/array/instance/reduce-right.js +11 -0
- package/es/array/instance/reduce.js +11 -0
- package/es/array/instance/reverse.js +11 -0
- package/es/array/instance/slice.js +11 -0
- package/es/array/instance/sort.js +11 -0
- package/es/array/instance/splice.js +11 -0
- package/es/array/instance/to-reversed.js +11 -0
- package/es/array/instance/to-sorted.js +11 -0
- package/es/array/instance/to-spliced.js +11 -0
- package/es/array/instance/unshift.js +11 -0
- package/es/array/instance/values.js +11 -0
- package/es/array/instance/with.js +11 -0
- package/es/array/iterator.js +5 -3
- package/es/array/join.js +1 -0
- package/es/array/keys.js +2 -1
- package/es/array/last-index-of.js +1 -0
- package/es/array/map.js +1 -0
- package/es/array/of.js +3 -2
- package/es/array/prototype/at.js +6 -0
- package/es/array/prototype/concat.js +6 -0
- package/es/array/prototype/copy-within.js +6 -0
- package/es/array/prototype/entries.js +7 -0
- package/es/array/prototype/fill.js +6 -0
- package/es/array/prototype/filter.js +6 -0
- package/es/array/prototype/find-index.js +6 -0
- package/es/array/prototype/find-last-index.js +6 -0
- package/es/array/prototype/find-last.js +6 -0
- package/es/array/prototype/find.js +6 -0
- package/es/array/prototype/flat-map.js +7 -0
- package/es/array/prototype/flat.js +7 -0
- package/es/array/prototype/includes.js +6 -0
- package/es/array/prototype/index-of.js +6 -0
- package/es/array/prototype/iterator.js +7 -0
- package/es/array/prototype/join.js +6 -0
- package/es/array/prototype/keys.js +7 -0
- package/es/array/prototype/last-index-of.js +6 -0
- package/es/array/prototype/map.js +6 -0
- package/es/array/prototype/push.js +6 -0
- package/es/array/prototype/reduce-right.js +6 -0
- package/es/array/prototype/reduce.js +6 -0
- package/es/array/prototype/reverse.js +6 -0
- package/es/array/prototype/slice.js +6 -0
- package/es/array/prototype/sort.js +6 -0
- package/es/array/prototype/splice.js +6 -0
- package/es/array/prototype/to-reversed.js +6 -0
- package/es/array/prototype/to-sorted.js +7 -0
- package/es/array/prototype/to-spliced.js +6 -0
- package/es/array/prototype/unshift.js +6 -0
- package/es/array/prototype/values.js +9 -0
- package/es/array/prototype/with.js +6 -0
- package/es/array/push.js +1 -0
- package/es/array/reduce-right.js +1 -0
- package/es/array/reduce.js +1 -0
- package/es/array/reverse.js +1 -0
- package/es/array/slice.js +1 -0
- package/es/array/sort.js +1 -0
- package/es/array/splice.js +1 -0
- package/es/array/to-reversed.js +1 -0
- package/es/array/to-sorted.js +1 -0
- package/es/array/to-spliced.js +1 -0
- package/es/array/unshift.js +1 -0
- package/es/array/values.js +4 -1
- package/es/array/with.js +1 -0
- package/es/array-buffer/constructor.js +4 -1
- package/es/array-buffer/detached.js +0 -2
- package/es/array-buffer/index.js +4 -2
- package/es/array-buffer/is-view.js +3 -2
- package/es/array-buffer/transfer-to-fixed-length.js +0 -2
- package/es/array-buffer/transfer.js +0 -2
- package/es/async-disposable-stack/constructor.js +5 -3
- package/es/async-disposable-stack/index.js +5 -3
- package/es/async-iterator/index.js +8 -1
- package/es/data-view/constructor.js +13 -0
- package/es/data-view/index.js +7 -4
- package/es/data-view/set-float16.js +1 -0
- package/es/date/index.js +1 -6
- package/es/date/prototype/to-json.js +6 -0
- package/es/date/to-json.js +1 -0
- package/es/disposable-stack/constructor.js +1 -2
- package/es/disposable-stack/index.js +1 -2
- package/es/error/constructor.js +2 -1
- package/es/error/index.js +2 -2
- package/es/error/is-error.js +3 -3
- package/es/eval-error/constructor.js +6 -0
- package/es/eval-error/index.js +7 -0
- package/es/eval-error/is-error.js +6 -0
- package/es/float32-array/at.js +2 -0
- package/es/float32-array/constructor.js +45 -0
- package/es/float32-array/copy-within.js +2 -0
- package/es/float32-array/entries.js +4 -0
- package/es/float32-array/every.js +2 -0
- package/es/float32-array/fill.js +2 -0
- package/es/float32-array/filter.js +2 -0
- package/es/float32-array/find-index.js +2 -0
- package/es/float32-array/find-last-index.js +2 -0
- package/es/float32-array/find-last.js +2 -0
- package/es/float32-array/find.js +2 -0
- package/es/float32-array/for-each.js +2 -0
- package/es/float32-array/from.js +41 -0
- package/es/float32-array/includes.js +2 -0
- package/es/float32-array/index-of.js +2 -0
- package/es/float32-array/index.js +47 -0
- package/es/float32-array/iterator.js +4 -0
- package/es/float32-array/join.js +2 -0
- package/es/float32-array/keys.js +4 -0
- package/es/float32-array/last-index-of.js +2 -0
- package/es/float32-array/map.js +2 -0
- package/es/float32-array/of.js +40 -0
- package/es/float32-array/reduce-right.js +2 -0
- package/es/float32-array/reduce.js +2 -0
- package/es/float32-array/reverse.js +2 -0
- package/es/float32-array/set.js +2 -0
- package/es/float32-array/slice.js +2 -0
- package/es/float32-array/some.js +2 -0
- package/es/float32-array/sort.js +2 -0
- package/es/float32-array/subarray.js +2 -0
- package/es/float32-array/to-locale-string.js +2 -0
- package/es/float32-array/to-reversed.js +2 -0
- package/es/float32-array/to-sorted.js +2 -0
- package/es/float32-array/to-string.js +2 -0
- package/es/float32-array/values.js +5 -0
- package/es/float32-array/with.js +2 -0
- package/es/float64-array/at.js +2 -0
- package/es/float64-array/constructor.js +45 -0
- package/es/float64-array/copy-within.js +2 -0
- package/es/float64-array/entries.js +4 -0
- package/es/float64-array/every.js +2 -0
- package/es/float64-array/fill.js +2 -0
- package/es/float64-array/filter.js +2 -0
- package/es/float64-array/find-index.js +2 -0
- package/es/float64-array/find-last-index.js +2 -0
- package/es/float64-array/find-last.js +2 -0
- package/es/float64-array/find.js +2 -0
- package/es/float64-array/for-each.js +2 -0
- package/es/float64-array/from.js +41 -0
- package/es/float64-array/includes.js +2 -0
- package/es/float64-array/index-of.js +2 -0
- package/es/float64-array/index.js +47 -0
- package/es/float64-array/iterator.js +4 -0
- package/es/float64-array/join.js +2 -0
- package/es/float64-array/keys.js +4 -0
- package/es/float64-array/last-index-of.js +2 -0
- package/es/float64-array/map.js +2 -0
- package/es/float64-array/of.js +40 -0
- package/es/float64-array/reduce-right.js +2 -0
- package/es/float64-array/reduce.js +2 -0
- package/es/float64-array/reverse.js +2 -0
- package/es/float64-array/set.js +2 -0
- package/es/float64-array/slice.js +2 -0
- package/es/float64-array/some.js +2 -0
- package/es/float64-array/sort.js +2 -0
- package/es/float64-array/subarray.js +2 -0
- package/es/float64-array/to-locale-string.js +2 -0
- package/es/float64-array/to-reversed.js +2 -0
- package/es/float64-array/to-sorted.js +2 -0
- package/es/float64-array/to-string.js +2 -0
- package/es/float64-array/values.js +5 -0
- package/es/float64-array/with.js +2 -0
- package/es/function/index.js +2 -2
- package/es/function/instance/name.js +9 -0
- package/es/function/name.js +4 -0
- package/es/get-iterator-method.js +4 -2
- package/es/get-iterator.js +4 -2
- package/es/global-this.js +3 -1
- package/es/index.js +103 -95
- package/es/instance/at.js +7 -7
- package/es/instance/code-point-at.js +5 -4
- package/es/instance/concat.js +4 -3
- package/es/instance/copy-within.js +4 -3
- package/es/instance/ends-with.js +5 -4
- package/es/instance/entries.js +4 -3
- package/es/instance/fill.js +4 -3
- package/es/instance/filter.js +4 -3
- package/es/instance/find-index.js +4 -3
- package/es/instance/find-last-index.js +4 -3
- package/es/instance/find-last.js +4 -3
- package/es/instance/find.js +4 -3
- package/es/instance/flags.js +2 -0
- package/es/instance/flat-map.js +4 -3
- package/es/instance/flat.js +4 -3
- package/es/instance/includes.js +7 -7
- package/es/instance/index-of.js +4 -3
- package/es/instance/is-well-formed.js +5 -4
- package/es/instance/join.js +11 -0
- package/es/instance/keys.js +4 -3
- package/es/instance/last-index-of.js +4 -3
- package/es/instance/map.js +4 -3
- package/es/instance/match-all.js +5 -4
- package/es/instance/name.js +9 -0
- package/es/instance/pad-end.js +5 -4
- package/es/instance/pad-start.js +5 -4
- package/es/instance/push.js +4 -3
- package/es/instance/reduce-right.js +4 -3
- package/es/instance/reduce.js +4 -3
- package/es/instance/repeat.js +5 -4
- package/es/instance/replace-all.js +5 -4
- package/es/instance/reverse.js +4 -3
- package/es/instance/slice.js +4 -3
- package/es/instance/sort.js +4 -3
- package/es/instance/splice.js +4 -3
- package/es/instance/starts-with.js +5 -4
- package/es/instance/to-exponential.js +12 -0
- package/es/instance/to-fixed.js +12 -0
- package/es/instance/to-reversed.js +4 -3
- package/es/instance/to-sorted.js +4 -3
- package/es/instance/to-spliced.js +4 -3
- package/es/instance/to-well-formed.js +5 -4
- package/es/instance/trim-end.js +5 -4
- package/es/instance/trim-left.js +5 -4
- package/es/instance/trim-right.js +5 -4
- package/es/instance/trim-start.js +5 -4
- package/es/instance/trim.js +5 -4
- package/es/instance/unshift.js +4 -3
- package/es/instance/values.js +4 -3
- package/es/instance/with.js +4 -3
- package/es/int16-array/at.js +2 -0
- package/es/int16-array/constructor.js +45 -0
- package/es/int16-array/copy-within.js +2 -0
- package/es/int16-array/entries.js +4 -0
- package/es/int16-array/every.js +2 -0
- package/es/int16-array/fill.js +2 -0
- package/es/int16-array/filter.js +2 -0
- package/es/int16-array/find-index.js +2 -0
- package/es/int16-array/find-last-index.js +2 -0
- package/es/int16-array/find-last.js +2 -0
- package/es/int16-array/find.js +2 -0
- package/es/int16-array/for-each.js +2 -0
- package/es/int16-array/from.js +41 -0
- package/es/int16-array/includes.js +2 -0
- package/es/int16-array/index-of.js +2 -0
- package/es/int16-array/index.js +47 -0
- package/es/int16-array/iterator.js +4 -0
- package/es/int16-array/join.js +2 -0
- package/es/int16-array/keys.js +4 -0
- package/es/int16-array/last-index-of.js +2 -0
- package/es/int16-array/map.js +2 -0
- package/es/int16-array/of.js +40 -0
- package/es/int16-array/reduce-right.js +2 -0
- package/es/int16-array/reduce.js +2 -0
- package/es/int16-array/reverse.js +2 -0
- package/es/int16-array/set.js +2 -0
- package/es/int16-array/slice.js +2 -0
- package/es/int16-array/some.js +2 -0
- package/es/int16-array/sort.js +2 -0
- package/es/int16-array/subarray.js +2 -0
- package/es/int16-array/to-locale-string.js +2 -0
- package/es/int16-array/to-reversed.js +2 -0
- package/es/int16-array/to-sorted.js +2 -0
- package/es/int16-array/to-string.js +2 -0
- package/es/int16-array/values.js +5 -0
- package/es/int16-array/with.js +2 -0
- package/es/int32-array/at.js +2 -0
- package/es/int32-array/constructor.js +45 -0
- package/es/int32-array/copy-within.js +2 -0
- package/es/int32-array/entries.js +4 -0
- package/es/int32-array/every.js +2 -0
- package/es/int32-array/fill.js +2 -0
- package/es/int32-array/filter.js +2 -0
- package/es/int32-array/find-index.js +2 -0
- package/es/int32-array/find-last-index.js +2 -0
- package/es/int32-array/find-last.js +2 -0
- package/es/int32-array/find.js +2 -0
- package/es/int32-array/for-each.js +2 -0
- package/es/int32-array/from.js +41 -0
- package/es/int32-array/includes.js +2 -0
- package/es/int32-array/index-of.js +2 -0
- package/es/int32-array/index.js +47 -0
- package/es/int32-array/iterator.js +4 -0
- package/es/int32-array/join.js +2 -0
- package/es/int32-array/keys.js +4 -0
- package/es/int32-array/last-index-of.js +2 -0
- package/es/int32-array/map.js +2 -0
- package/es/int32-array/of.js +40 -0
- package/es/int32-array/reduce-right.js +2 -0
- package/es/int32-array/reduce.js +2 -0
- package/es/int32-array/reverse.js +2 -0
- package/es/int32-array/set.js +2 -0
- package/es/int32-array/slice.js +2 -0
- package/es/int32-array/some.js +2 -0
- package/es/int32-array/sort.js +2 -0
- package/es/int32-array/subarray.js +2 -0
- package/es/int32-array/to-locale-string.js +2 -0
- package/es/int32-array/to-reversed.js +2 -0
- package/es/int32-array/to-sorted.js +2 -0
- package/es/int32-array/to-string.js +2 -0
- package/es/int32-array/values.js +5 -0
- package/es/int32-array/with.js +2 -0
- package/es/int8-array/at.js +2 -0
- package/es/int8-array/constructor.js +45 -0
- package/es/int8-array/copy-within.js +2 -0
- package/es/int8-array/entries.js +4 -0
- package/es/int8-array/every.js +2 -0
- package/es/int8-array/fill.js +2 -0
- package/es/int8-array/filter.js +2 -0
- package/es/int8-array/find-index.js +2 -0
- package/es/int8-array/find-last-index.js +2 -0
- package/es/int8-array/find-last.js +2 -0
- package/es/int8-array/find.js +2 -0
- package/es/int8-array/for-each.js +2 -0
- package/es/int8-array/from.js +41 -0
- package/es/int8-array/includes.js +2 -0
- package/es/int8-array/index-of.js +2 -0
- package/es/int8-array/index.js +47 -0
- package/es/int8-array/iterator.js +4 -0
- package/es/int8-array/join.js +2 -0
- package/es/int8-array/keys.js +4 -0
- package/es/int8-array/last-index-of.js +2 -0
- package/es/int8-array/map.js +2 -0
- package/es/int8-array/of.js +40 -0
- package/es/int8-array/reduce-right.js +2 -0
- package/es/int8-array/reduce.js +2 -0
- package/es/int8-array/reverse.js +2 -0
- package/es/int8-array/set.js +2 -0
- package/es/int8-array/slice.js +2 -0
- package/es/int8-array/some.js +2 -0
- package/es/int8-array/sort.js +2 -0
- package/es/int8-array/subarray.js +2 -0
- package/es/int8-array/to-locale-string.js +2 -0
- package/es/int8-array/to-reversed.js +2 -0
- package/es/int8-array/to-sorted.js +2 -0
- package/es/int8-array/to-string.js +2 -0
- package/es/int8-array/values.js +5 -0
- package/es/int8-array/with.js +2 -0
- package/es/is-iterable.js +4 -2
- package/es/iterator/concat.js +7 -6
- package/es/iterator/constructor.js +21 -0
- package/es/iterator/every.js +2 -0
- package/es/iterator/find.js +2 -0
- package/es/iterator/flat-map.js +2 -1
- package/es/iterator/for-each.js +2 -0
- package/es/iterator/from.js +5 -4
- package/es/iterator/index.js +2 -2
- package/es/iterator/prototype/drop.js +8 -0
- package/es/iterator/prototype/every.js +10 -0
- package/es/iterator/prototype/filter.js +8 -0
- package/es/iterator/prototype/find.js +10 -0
- package/es/iterator/prototype/flat-map.js +10 -0
- package/es/iterator/prototype/for-each.js +10 -0
- package/es/iterator/prototype/map.js +8 -0
- package/es/iterator/prototype/reduce.js +10 -0
- package/es/iterator/prototype/some.js +10 -0
- package/es/iterator/prototype/take.js +8 -0
- package/es/iterator/prototype/to-array.js +10 -0
- package/es/iterator/reduce.js +2 -0
- package/es/iterator/some.js +2 -0
- package/es/iterator/to-array.js +2 -0
- package/es/json/index.js +3 -5
- package/es/json/is-raw-json.js +3 -2
- package/es/json/parse.js +3 -3
- package/es/json/raw-json.js +3 -4
- package/es/json/stringify.js +2 -8
- package/es/map/constructor.js +12 -0
- package/es/map/get-or-insert-computed.js +5 -1
- package/es/map/get-or-insert.js +5 -1
- package/es/map/group-by.js +7 -3
- package/es/map/index.js +4 -2
- package/es/map/prototype/get-or-insert-computed.js +10 -0
- package/es/map/prototype/get-or-insert.js +10 -0
- package/es/math/acosh.js +3 -2
- package/es/math/asinh.js +3 -2
- package/es/math/atanh.js +3 -2
- package/es/math/cbrt.js +3 -2
- package/es/math/clz32.js +3 -2
- package/es/math/cosh.js +3 -2
- package/es/math/expm1.js +3 -2
- package/es/math/f16round.js +3 -2
- package/es/math/fround.js +3 -2
- package/es/math/hypot.js +3 -2
- package/es/math/imul.js +3 -2
- package/es/math/index.js +4 -1
- package/es/math/log10.js +3 -2
- package/es/math/log1p.js +3 -2
- package/es/math/log2.js +3 -2
- package/es/math/sign.js +3 -2
- package/es/math/sinh.js +3 -2
- package/es/math/sum-precise.js +5 -2
- package/es/math/tanh.js +3 -2
- package/es/math/trunc.js +3 -2
- package/es/number/constructor.js +1 -0
- package/es/number/epsilon.js +3 -1
- package/es/number/index.js +4 -1
- package/es/number/instance/to-exponential.js +12 -0
- package/es/number/instance/to-fixed.js +12 -0
- package/es/number/is-finite.js +3 -2
- package/es/number/is-integer.js +3 -2
- package/es/number/is-nan.js +3 -2
- package/es/number/is-safe-integer.js +3 -2
- package/es/number/max-safe-integer.js +3 -1
- package/es/number/min-safe-integer.js +3 -1
- package/es/number/parse-float.js +4 -2
- package/es/number/parse-int.js +4 -2
- package/es/number/prototype/to-exponential.js +7 -0
- package/es/number/prototype/to-fixed.js +7 -0
- package/es/number/to-exponential.js +2 -0
- package/es/number/to-fixed.js +2 -0
- package/es/object/assign.js +3 -2
- package/es/object/create.js +4 -6
- package/es/object/define-getter.js +1 -0
- package/es/object/define-properties.js +4 -8
- package/es/object/define-property.js +4 -8
- package/es/object/define-setter.js +1 -0
- package/es/object/entries.js +3 -2
- package/es/object/freeze.js +3 -2
- package/es/object/from-entries.js +6 -3
- package/es/object/get-own-property-descriptor.js +4 -6
- package/es/object/get-own-property-descriptors.js +3 -2
- package/es/object/get-own-property-names.js +4 -4
- package/es/object/get-own-property-symbols.js +4 -3
- package/es/object/get-prototype-of.js +3 -2
- package/es/object/group-by.js +5 -3
- package/es/object/has-own.js +3 -2
- package/es/object/index.js +9 -12
- package/es/object/is-extensible.js +3 -2
- package/es/object/is-frozen.js +3 -2
- package/es/object/is-sealed.js +3 -2
- package/es/object/is.js +3 -2
- package/es/object/keys.js +3 -2
- package/es/object/lookup-getter.js +1 -0
- package/es/object/lookup-setter.js +1 -0
- package/es/object/prevent-extensions.js +3 -2
- package/es/object/prototype/define-getter.js +6 -0
- package/es/object/prototype/define-setter.js +6 -0
- package/es/object/prototype/lookup-getter.js +6 -0
- package/es/object/prototype/lookup-setter.js +6 -0
- package/es/object/prototype/to-string.js +6 -0
- package/es/object/seal.js +3 -2
- package/es/object/set-prototype-of.js +3 -2
- package/es/object/to-string.js +3 -7
- package/es/object/values.js +3 -2
- package/es/parse-float.js +1 -0
- package/es/parse-int.js +1 -0
- package/es/promise/all-settled.js +12 -8
- package/es/promise/all.js +20 -0
- package/es/promise/any.js +13 -9
- package/es/promise/catch.js +8 -0
- package/es/promise/constructor.js +9 -0
- package/es/promise/finally.js +2 -1
- package/es/promise/index.js +10 -4
- package/es/promise/prototype/catch.js +8 -0
- package/es/promise/prototype/finally.js +8 -0
- package/es/promise/race.js +20 -0
- package/es/promise/reject.js +17 -0
- package/es/promise/resolve.js +17 -0
- package/es/promise/try.js +11 -9
- package/es/promise/with-resolvers.js +10 -6
- package/es/range-error/constructor.js +6 -0
- package/es/range-error/index.js +7 -0
- package/es/range-error/is-error.js +6 -0
- package/es/reference-error/constructor.js +6 -0
- package/es/reference-error/index.js +7 -0
- package/es/reference-error/is-error.js +6 -0
- package/es/reflect/apply.js +3 -2
- package/es/reflect/construct.js +3 -2
- package/es/reflect/define-property.js +3 -2
- package/es/reflect/delete-property.js +3 -2
- package/es/reflect/get-own-property-descriptor.js +3 -2
- package/es/reflect/get-prototype-of.js +3 -2
- package/es/reflect/get.js +3 -2
- package/es/reflect/has.js +3 -2
- package/es/reflect/index.js +1 -0
- package/es/reflect/is-extensible.js +3 -2
- package/es/reflect/own-keys.js +3 -2
- package/es/reflect/prevent-extensions.js +3 -2
- package/es/reflect/set-prototype-of.js +3 -2
- package/es/reflect/set.js +3 -2
- package/es/regexp/constructor.js +0 -2
- package/es/regexp/dot-all.js +0 -4
- package/es/regexp/escape.js +5 -2
- package/es/regexp/exec.js +2 -0
- package/es/regexp/flags.js +3 -2
- package/es/regexp/index.js +3 -1
- package/es/regexp/instance/flags.js +11 -0
- package/es/regexp/match.js +0 -8
- package/es/regexp/replace.js +0 -8
- package/es/regexp/search.js +0 -8
- package/es/regexp/split.js +0 -8
- package/es/regexp/sticky.js +0 -4
- package/es/regexp/test.js +3 -2
- package/es/regexp/to-string.js +0 -3
- package/es/set/constructor.js +17 -0
- package/es/set/difference.js +6 -2
- package/es/set/index.js +11 -9
- package/es/set/intersection.js +6 -2
- package/es/set/is-disjoint-from.js +6 -2
- package/es/set/is-subset-of.js +6 -2
- package/es/set/is-superset-of.js +6 -2
- package/es/set/prototype/difference.js +10 -0
- package/es/set/prototype/intersection.js +10 -0
- package/es/set/prototype/is-disjoint-from.js +10 -0
- package/es/set/prototype/is-subset-of.js +10 -0
- package/es/set/prototype/is-superset-of.js +10 -0
- package/es/set/prototype/symmetric-difference.js +10 -0
- package/es/set/prototype/union.js +10 -0
- package/es/set/symmetric-difference.js +6 -2
- package/es/set/union.js +6 -2
- package/es/string/anchor.js +1 -0
- package/es/string/at.js +2 -1
- package/es/string/big.js +1 -0
- package/es/string/blink.js +1 -0
- package/es/string/bold.js +1 -0
- package/es/string/code-point-at.js +1 -0
- package/es/string/ends-with.js +1 -0
- package/es/string/fixed.js +1 -0
- package/es/string/fontcolor.js +1 -0
- package/es/string/fontsize.js +1 -0
- package/es/string/from-code-point.js +3 -2
- package/es/string/includes.js +1 -0
- package/es/string/index.js +11 -9
- package/es/string/instance/anchor.js +12 -0
- package/es/string/instance/at.js +12 -0
- package/es/string/instance/big.js +12 -0
- package/es/string/instance/blink.js +12 -0
- package/es/string/instance/bold.js +12 -0
- package/es/string/instance/code-point-at.js +12 -0
- package/es/string/instance/ends-with.js +12 -0
- package/es/string/instance/fixed.js +12 -0
- package/es/string/instance/fontcolor.js +12 -0
- package/es/string/instance/fontsize.js +12 -0
- package/es/string/instance/includes.js +12 -0
- package/es/string/instance/is-well-formed.js +12 -0
- package/es/string/instance/italics.js +12 -0
- package/es/string/instance/link.js +12 -0
- package/es/string/instance/match-all.js +12 -0
- package/es/string/instance/pad-end.js +12 -0
- package/es/string/instance/pad-start.js +12 -0
- package/es/string/instance/repeat.js +12 -0
- package/es/string/instance/replace-all.js +12 -0
- package/es/string/instance/small.js +12 -0
- package/es/string/instance/starts-with.js +12 -0
- package/es/string/instance/strike.js +12 -0
- package/es/string/instance/sub.js +12 -0
- package/es/string/instance/sup.js +12 -0
- package/es/string/instance/to-well-formed.js +12 -0
- package/es/string/instance/trim-end.js +12 -0
- package/es/string/instance/trim-left.js +12 -0
- package/es/string/instance/trim-right.js +12 -0
- package/es/string/instance/trim-start.js +12 -0
- package/es/string/instance/trim.js +12 -0
- package/es/string/is-well-formed.js +3 -1
- package/es/string/italics.js +1 -0
- package/es/string/iterator.js +3 -2
- package/es/string/link.js +1 -0
- package/es/string/match-all.js +1 -0
- package/es/string/match.js +0 -3
- package/es/string/pad-end.js +2 -0
- package/es/string/pad-start.js +2 -0
- package/es/string/prototype/anchor.js +6 -0
- package/es/string/prototype/at.js +6 -0
- package/es/string/prototype/big.js +6 -0
- package/es/string/prototype/blink.js +6 -0
- package/es/string/prototype/bold.js +6 -0
- package/es/string/prototype/code-point-at.js +6 -0
- package/es/string/prototype/ends-with.js +6 -0
- package/es/string/prototype/fixed.js +6 -0
- package/es/string/prototype/fontcolor.js +6 -0
- package/es/string/prototype/fontsize.js +6 -0
- package/es/string/prototype/includes.js +6 -0
- package/es/string/prototype/is-well-formed.js +6 -0
- package/es/string/prototype/italics.js +6 -0
- package/es/string/prototype/iterator.js +7 -0
- package/es/string/prototype/link.js +6 -0
- package/es/string/prototype/match-all.js +8 -0
- package/es/string/prototype/pad-end.js +7 -0
- package/es/string/prototype/pad-start.js +7 -0
- package/es/string/prototype/repeat.js +6 -0
- package/es/string/prototype/replace-all.js +8 -0
- package/es/string/prototype/small.js +6 -0
- package/es/string/prototype/starts-with.js +6 -0
- package/es/string/prototype/strike.js +6 -0
- package/es/string/prototype/sub.js +6 -0
- package/es/string/prototype/sup.js +6 -0
- package/es/string/prototype/to-well-formed.js +6 -0
- package/es/string/prototype/trim-end.js +6 -0
- package/es/string/prototype/trim-left.js +6 -0
- package/es/string/prototype/trim-right.js +6 -0
- package/es/string/prototype/trim-start.js +6 -0
- package/es/string/prototype/trim.js +6 -0
- package/es/string/raw.js +3 -2
- package/es/string/repeat.js +1 -0
- package/es/string/replace-all.js +1 -0
- package/es/string/replace.js +0 -3
- package/es/string/search.js +0 -3
- package/es/string/small.js +1 -0
- package/es/string/split.js +0 -3
- package/es/string/starts-with.js +1 -0
- package/es/string/strike.js +1 -0
- package/es/string/sub.js +1 -0
- package/es/string/sup.js +1 -0
- package/es/string/to-well-formed.js +3 -1
- package/es/string/trim-end.js +2 -1
- package/es/string/trim-left.js +2 -1
- package/es/string/trim-right.js +2 -1
- package/es/string/trim-start.js +2 -1
- package/es/string/trim.js +1 -0
- package/es/suppressed-error/constructor.js +6 -0
- package/es/suppressed-error/index.js +7 -0
- package/es/suppressed-error/is-error.js +6 -0
- package/es/symbol/async-dispose.js +9 -2
- package/es/symbol/async-iterator.js +3 -2
- package/es/symbol/constructor.js +8 -0
- package/es/symbol/dispose.js +4 -2
- package/es/symbol/for.js +7 -3
- package/es/symbol/has-instance.js +3 -2
- package/es/symbol/index.js +6 -7
- package/es/symbol/is-concat-spreadable.js +3 -3
- package/es/symbol/iterator.js +5 -4
- package/es/symbol/key-for.js +4 -3
- package/es/symbol/match-all.js +3 -5
- package/es/symbol/match.js +3 -4
- package/es/symbol/replace.js +3 -4
- package/es/symbol/search.js +3 -4
- package/es/symbol/species.js +3 -2
- package/es/symbol/split.js +3 -4
- package/es/symbol/to-primitive.js +4 -3
- package/es/symbol/to-string-tag.js +5 -5
- package/es/symbol/unscopables.js +3 -2
- package/es/syntax-error/constructor.js +6 -0
- package/es/syntax-error/index.js +7 -0
- package/es/syntax-error/is-error.js +6 -0
- package/es/type-error/constructor.js +6 -0
- package/es/type-error/index.js +7 -0
- package/es/type-error/is-error.js +6 -0
- package/es/typed-array/constructors.js +17 -0
- package/es/typed-array/entries.js +2 -1
- package/es/typed-array/from-base64.js +42 -0
- package/es/typed-array/from-hex.js +42 -0
- package/es/typed-array/from.js +43 -0
- package/es/typed-array/index.js +54 -6
- package/es/typed-array/iterator.js +1 -0
- package/es/typed-array/keys.js +2 -1
- package/es/typed-array/methods.js +10 -2
- package/es/typed-array/of.js +42 -0
- package/es/typed-array/to-sorted.js +0 -1
- package/es/typed-array/values.js +2 -0
- package/es/uint16-array/at.js +2 -0
- package/es/uint16-array/constructor.js +45 -0
- package/es/uint16-array/copy-within.js +2 -0
- package/es/uint16-array/entries.js +4 -0
- package/es/uint16-array/every.js +2 -0
- package/es/uint16-array/fill.js +2 -0
- package/es/uint16-array/filter.js +2 -0
- package/es/uint16-array/find-index.js +2 -0
- package/es/uint16-array/find-last-index.js +2 -0
- package/es/uint16-array/find-last.js +2 -0
- package/es/uint16-array/find.js +2 -0
- package/es/uint16-array/for-each.js +2 -0
- package/es/uint16-array/from.js +41 -0
- package/es/uint16-array/includes.js +2 -0
- package/es/uint16-array/index-of.js +2 -0
- package/es/uint16-array/index.js +47 -0
- package/es/uint16-array/iterator.js +4 -0
- package/es/uint16-array/join.js +2 -0
- package/es/uint16-array/keys.js +4 -0
- package/es/uint16-array/last-index-of.js +2 -0
- package/es/uint16-array/map.js +2 -0
- package/es/uint16-array/of.js +40 -0
- package/es/uint16-array/reduce-right.js +2 -0
- package/es/uint16-array/reduce.js +2 -0
- package/es/uint16-array/reverse.js +2 -0
- package/es/uint16-array/set.js +2 -0
- package/es/uint16-array/slice.js +2 -0
- package/es/uint16-array/some.js +2 -0
- package/es/uint16-array/sort.js +2 -0
- package/es/uint16-array/subarray.js +2 -0
- package/es/uint16-array/to-locale-string.js +2 -0
- package/es/uint16-array/to-reversed.js +2 -0
- package/es/uint16-array/to-sorted.js +2 -0
- package/es/uint16-array/to-string.js +2 -0
- package/es/uint16-array/values.js +5 -0
- package/es/uint16-array/with.js +2 -0
- package/es/uint32-array/at.js +2 -0
- package/es/uint32-array/constructor.js +45 -0
- package/es/uint32-array/copy-within.js +2 -0
- package/es/uint32-array/entries.js +4 -0
- package/es/uint32-array/every.js +2 -0
- package/es/uint32-array/fill.js +2 -0
- package/es/uint32-array/filter.js +2 -0
- package/es/uint32-array/find-index.js +2 -0
- package/es/uint32-array/find-last-index.js +2 -0
- package/es/uint32-array/find-last.js +2 -0
- package/es/uint32-array/find.js +2 -0
- package/es/uint32-array/for-each.js +2 -0
- package/es/uint32-array/from.js +41 -0
- package/es/uint32-array/includes.js +2 -0
- package/es/uint32-array/index-of.js +2 -0
- package/es/uint32-array/index.js +47 -0
- package/es/uint32-array/iterator.js +4 -0
- package/es/uint32-array/join.js +2 -0
- package/es/uint32-array/keys.js +4 -0
- package/es/uint32-array/last-index-of.js +2 -0
- package/es/uint32-array/map.js +2 -0
- package/es/uint32-array/of.js +40 -0
- package/es/uint32-array/reduce-right.js +2 -0
- package/es/uint32-array/reduce.js +2 -0
- package/es/uint32-array/reverse.js +2 -0
- package/es/uint32-array/set.js +2 -0
- package/es/uint32-array/slice.js +2 -0
- package/es/uint32-array/some.js +2 -0
- package/es/uint32-array/sort.js +2 -0
- package/es/uint32-array/subarray.js +2 -0
- package/es/uint32-array/to-locale-string.js +2 -0
- package/es/uint32-array/to-reversed.js +2 -0
- package/es/uint32-array/to-sorted.js +2 -0
- package/es/uint32-array/to-string.js +2 -0
- package/es/uint32-array/values.js +5 -0
- package/es/uint32-array/with.js +2 -0
- package/es/uint8-array/at.js +2 -0
- package/es/uint8-array/constructor.js +49 -0
- package/es/uint8-array/copy-within.js +2 -0
- package/es/uint8-array/entries.js +4 -0
- package/es/uint8-array/every.js +2 -0
- package/es/uint8-array/fill.js +2 -0
- package/es/uint8-array/filter.js +2 -0
- package/es/uint8-array/find-index.js +2 -0
- package/es/uint8-array/find-last-index.js +2 -0
- package/es/uint8-array/find-last.js +2 -0
- package/es/uint8-array/find.js +2 -0
- package/es/uint8-array/for-each.js +2 -0
- package/es/uint8-array/from-base64.js +44 -0
- package/es/uint8-array/from-hex.js +44 -0
- package/es/uint8-array/from.js +45 -0
- package/es/uint8-array/includes.js +2 -0
- package/es/uint8-array/index-of.js +2 -0
- package/es/uint8-array/index.js +53 -0
- package/es/uint8-array/iterator.js +4 -0
- package/es/uint8-array/join.js +2 -0
- package/es/uint8-array/keys.js +4 -0
- package/es/uint8-array/last-index-of.js +2 -0
- package/es/uint8-array/map.js +2 -0
- package/es/uint8-array/of.js +44 -0
- package/es/uint8-array/reduce-right.js +2 -0
- package/es/uint8-array/reduce.js +2 -0
- package/es/uint8-array/reverse.js +2 -0
- package/es/uint8-array/set-from-base64.js +2 -0
- package/es/uint8-array/set-from-hex.js +2 -0
- package/es/uint8-array/set.js +2 -0
- package/es/uint8-array/slice.js +2 -0
- package/es/uint8-array/some.js +2 -0
- package/es/uint8-array/sort.js +2 -0
- package/es/uint8-array/subarray.js +2 -0
- package/es/uint8-array/to-base64.js +2 -0
- package/es/uint8-array/to-hex.js +2 -0
- package/es/uint8-array/to-locale-string.js +2 -0
- package/es/uint8-array/to-reversed.js +2 -0
- package/es/uint8-array/to-sorted.js +2 -0
- package/es/uint8-array/to-string.js +2 -0
- package/es/uint8-array/values.js +5 -0
- package/es/uint8-array/with.js +2 -0
- package/es/uint8-clamped-array/at.js +2 -0
- package/es/uint8-clamped-array/constructor.js +45 -0
- package/es/uint8-clamped-array/copy-within.js +2 -0
- package/es/uint8-clamped-array/entries.js +4 -0
- package/es/uint8-clamped-array/every.js +2 -0
- package/es/uint8-clamped-array/fill.js +2 -0
- package/es/uint8-clamped-array/filter.js +2 -0
- package/es/uint8-clamped-array/find-index.js +2 -0
- package/es/uint8-clamped-array/find-last-index.js +2 -0
- package/es/uint8-clamped-array/find-last.js +2 -0
- package/es/uint8-clamped-array/find.js +2 -0
- package/es/uint8-clamped-array/for-each.js +2 -0
- package/es/uint8-clamped-array/from.js +41 -0
- package/es/uint8-clamped-array/includes.js +2 -0
- package/es/uint8-clamped-array/index-of.js +2 -0
- package/es/uint8-clamped-array/index.js +47 -0
- package/es/uint8-clamped-array/iterator.js +4 -0
- package/es/uint8-clamped-array/join.js +2 -0
- package/es/uint8-clamped-array/keys.js +4 -0
- package/es/uint8-clamped-array/last-index-of.js +2 -0
- package/es/uint8-clamped-array/map.js +2 -0
- package/es/uint8-clamped-array/of.js +40 -0
- package/es/uint8-clamped-array/reduce-right.js +2 -0
- package/es/uint8-clamped-array/reduce.js +2 -0
- package/es/uint8-clamped-array/reverse.js +2 -0
- package/es/uint8-clamped-array/set.js +2 -0
- package/es/uint8-clamped-array/slice.js +2 -0
- package/es/uint8-clamped-array/some.js +2 -0
- package/es/uint8-clamped-array/sort.js +2 -0
- package/es/uint8-clamped-array/subarray.js +2 -0
- package/es/uint8-clamped-array/to-locale-string.js +2 -0
- package/es/uint8-clamped-array/to-reversed.js +2 -0
- package/es/uint8-clamped-array/to-sorted.js +2 -0
- package/es/uint8-clamped-array/to-string.js +2 -0
- package/es/uint8-clamped-array/values.js +5 -0
- package/es/uint8-clamped-array/with.js +2 -0
- package/es/uri-error/constructor.js +6 -0
- package/es/uri-error/index.js +7 -0
- package/es/uri-error/is-error.js +6 -0
- package/es/weak-map/constructor.js +11 -0
- package/es/weak-map/get-or-insert-computed.js +5 -1
- package/es/weak-map/get-or-insert.js +5 -1
- package/es/weak-map/index.js +4 -2
- package/es/weak-map/prototype/get-or-insert-computed.js +10 -0
- package/es/weak-map/prototype/get-or-insert.js +10 -0
- package/es/weak-set/constructor.js +9 -0
- package/es/weak-set/index.js +4 -2
- package/full/aggregate-error/constructor.js +11 -0
- package/full/aggregate-error/index.js +12 -0
- package/full/aggregate-error/is-error.js +6 -0
- package/full/array/at.js +3 -4
- package/full/array/concat.js +4 -2
- package/full/array/copy-within.js +4 -2
- package/full/array/entries.js +5 -2
- package/full/array/fill.js +4 -2
- package/full/array/filter-reject.js +1 -0
- package/full/array/filter.js +4 -2
- package/full/array/find-index.js +4 -2
- package/full/array/find-last-index.js +4 -2
- package/full/array/find-last.js +4 -2
- package/full/array/find.js +4 -2
- package/full/array/flat-map.js +5 -2
- package/full/array/flat.js +5 -2
- package/full/array/from-async.js +12 -2
- package/full/array/from.js +8 -2
- package/full/array/includes.js +4 -2
- package/full/array/index-of.js +4 -2
- package/full/array/index.js +49 -9
- package/full/array/instance/at.js +11 -0
- package/full/array/instance/concat.js +11 -0
- package/full/array/instance/copy-within.js +11 -0
- package/full/array/instance/entries.js +11 -0
- package/full/array/instance/fill.js +11 -0
- package/full/array/instance/filter-reject.js +11 -0
- package/full/array/instance/filter.js +11 -0
- package/full/array/instance/find-index.js +11 -0
- package/full/array/instance/find-last-index.js +11 -0
- package/full/array/instance/find-last.js +11 -0
- package/full/array/instance/find.js +11 -0
- package/full/array/instance/flat-map.js +11 -0
- package/full/array/instance/flat.js +11 -0
- package/full/array/instance/includes.js +11 -0
- package/full/array/instance/index-of.js +11 -0
- package/full/array/instance/join.js +11 -0
- package/full/array/instance/keys.js +11 -0
- package/full/array/instance/last-index-of.js +11 -0
- package/full/array/instance/map.js +11 -0
- package/full/array/instance/push.js +11 -0
- package/full/array/instance/reduce-right.js +11 -0
- package/full/array/instance/reduce.js +11 -0
- package/full/array/instance/reverse.js +11 -0
- package/full/array/instance/slice.js +11 -0
- package/full/array/instance/sort.js +11 -0
- package/full/array/instance/splice.js +11 -0
- package/full/array/instance/to-reversed.js +11 -0
- package/full/array/instance/to-sorted.js +11 -0
- package/full/array/instance/to-spliced.js +11 -0
- package/full/array/instance/unique-by.js +11 -0
- package/full/array/instance/unshift.js +11 -0
- package/full/array/instance/values.js +11 -0
- package/full/array/instance/with.js +11 -0
- package/full/array/is-template-object.js +3 -2
- package/full/array/iterator.js +6 -2
- package/full/array/join.js +4 -2
- package/full/array/keys.js +5 -2
- package/full/array/last-index-of.js +4 -2
- package/full/array/map.js +4 -2
- package/full/array/of.js +4 -2
- package/full/array/prototype/at.js +6 -0
- package/full/array/prototype/concat.js +6 -0
- package/full/array/prototype/copy-within.js +6 -0
- package/full/array/prototype/entries.js +7 -0
- package/full/array/prototype/fill.js +6 -0
- package/full/array/prototype/filter-reject.js +6 -0
- package/full/array/prototype/filter.js +6 -0
- package/full/array/prototype/find-index.js +6 -0
- package/full/array/prototype/find-last-index.js +6 -0
- package/full/array/prototype/find-last.js +6 -0
- package/full/array/prototype/find.js +6 -0
- package/full/array/prototype/flat-map.js +7 -0
- package/full/array/prototype/flat.js +7 -0
- package/full/array/prototype/includes.js +6 -0
- package/full/array/prototype/index-of.js +6 -0
- package/full/array/prototype/iterator.js +7 -0
- package/full/array/prototype/join.js +6 -0
- package/full/array/prototype/keys.js +7 -0
- package/full/array/prototype/last-index-of.js +6 -0
- package/full/array/prototype/map.js +6 -0
- package/full/array/prototype/push.js +6 -0
- package/full/array/prototype/reduce-right.js +6 -0
- package/full/array/prototype/reduce.js +6 -0
- package/full/array/prototype/reverse.js +6 -0
- package/full/array/prototype/slice.js +6 -0
- package/full/array/prototype/sort.js +6 -0
- package/full/array/prototype/splice.js +6 -0
- package/full/array/prototype/to-reversed.js +6 -0
- package/full/array/prototype/to-sorted.js +7 -0
- package/full/array/prototype/to-spliced.js +6 -0
- package/full/array/prototype/unique-by.js +11 -0
- package/full/array/prototype/unshift.js +6 -0
- package/full/array/prototype/values.js +10 -0
- package/full/array/prototype/with.js +6 -0
- package/full/array/push.js +4 -2
- package/full/array/reduce-right.js +4 -2
- package/full/array/reduce.js +4 -2
- package/full/array/reverse.js +4 -2
- package/full/array/slice.js +4 -2
- package/full/array/sort.js +4 -2
- package/full/array/splice.js +4 -2
- package/full/array/to-reversed.js +4 -2
- package/full/array/to-sorted.js +5 -2
- package/full/array/to-spliced.js +4 -2
- package/full/array/unique-by.js +6 -1
- package/full/array/unshift.js +4 -2
- package/full/array/values.js +8 -2
- package/full/array/with.js +4 -2
- package/full/array-buffer/constructor.js +11 -2
- package/full/array-buffer/detached.js +1 -3
- package/full/array-buffer/index.js +12 -2
- package/full/array-buffer/is-view.js +4 -2
- package/full/array-buffer/slice.js +1 -3
- package/full/array-buffer/transfer-to-fixed-length.js +2 -3
- package/full/array-buffer/transfer.js +2 -3
- package/full/async-disposable-stack/constructor.js +12 -2
- package/full/async-disposable-stack/index.js +12 -2
- package/full/async-iterator/constructor.js +27 -0
- package/full/async-iterator/drop.js +11 -2
- package/full/async-iterator/every.js +10 -2
- package/full/async-iterator/filter.js +11 -2
- package/full/async-iterator/find.js +10 -2
- package/full/async-iterator/flat-map.js +14 -2
- package/full/async-iterator/for-each.js +10 -2
- package/full/async-iterator/from.js +26 -2
- package/full/async-iterator/index.js +26 -5
- package/full/async-iterator/map.js +11 -2
- package/full/async-iterator/prototype/drop.js +13 -0
- package/full/async-iterator/prototype/every.js +12 -0
- package/full/async-iterator/prototype/filter.js +13 -0
- package/full/async-iterator/prototype/find.js +12 -0
- package/full/async-iterator/prototype/flat-map.js +16 -0
- package/full/async-iterator/prototype/for-each.js +12 -0
- package/full/async-iterator/prototype/map.js +13 -0
- package/full/async-iterator/prototype/reduce.js +12 -0
- package/full/async-iterator/prototype/some.js +12 -0
- package/full/async-iterator/prototype/take.js +13 -0
- package/full/async-iterator/prototype/to-array.js +12 -0
- package/full/async-iterator/reduce.js +10 -2
- package/full/async-iterator/some.js +10 -2
- package/full/async-iterator/take.js +11 -2
- package/full/async-iterator/to-array.js +10 -2
- package/full/atob.js +8 -2
- package/full/btoa.js +8 -2
- package/full/clear-immediate.js +4 -2
- package/full/data-view/constructor.js +15 -0
- package/full/data-view/get-float16.js +1 -3
- package/full/data-view/index.js +11 -2
- package/full/data-view/set-float16.js +2 -3
- package/full/date/index.js +5 -2
- package/full/date/prototype/to-json.js +6 -0
- package/full/date/to-json.js +4 -2
- package/full/disposable-stack/constructor.js +7 -2
- package/full/disposable-stack/index.js +7 -2
- package/full/dom-collections/entries.js +4 -0
- package/full/dom-collections/for-each.js +1 -3
- package/full/dom-collections/index.js +9 -3
- package/full/dom-collections/instance/entries.js +21 -0
- package/full/dom-collections/instance/for-each.js +19 -0
- package/full/dom-collections/instance/keys.js +21 -0
- package/full/dom-collections/instance/values.js +21 -0
- package/full/dom-collections/iterator.js +3 -3
- package/full/dom-collections/keys.js +4 -0
- package/full/dom-collections/prototype/entries.js +8 -0
- package/full/dom-collections/prototype/for-each.js +6 -0
- package/full/dom-collections/prototype/keys.js +8 -0
- package/full/dom-collections/prototype/values.js +8 -0
- package/full/dom-collections/values.js +4 -0
- package/full/dom-exception/constructor.js +7 -2
- package/full/dom-exception/index.js +7 -2
- package/full/error/constructor.js +4 -2
- package/full/error/index.js +5 -2
- package/full/error/is-error.js +4 -2
- package/full/eval-error/constructor.js +6 -0
- package/full/eval-error/index.js +7 -0
- package/full/eval-error/is-error.js +6 -0
- package/full/float32-array/at.js +2 -0
- package/full/float32-array/constructor.js +49 -0
- package/full/float32-array/copy-within.js +2 -0
- package/full/float32-array/entries.js +4 -0
- package/full/float32-array/every.js +2 -0
- package/full/float32-array/fill.js +2 -0
- package/full/float32-array/filter-reject.js +2 -0
- package/full/float32-array/filter.js +2 -0
- package/full/float32-array/find-index.js +2 -0
- package/full/float32-array/find-last-index.js +2 -0
- package/full/float32-array/find-last.js +2 -0
- package/full/float32-array/find.js +2 -0
- package/full/float32-array/for-each.js +2 -0
- package/full/float32-array/from.js +45 -0
- package/full/float32-array/includes.js +2 -0
- package/full/float32-array/index-of.js +2 -0
- package/full/float32-array/index.js +51 -0
- package/full/float32-array/iterator.js +4 -0
- package/full/float32-array/join.js +2 -0
- package/full/float32-array/keys.js +4 -0
- package/full/float32-array/last-index-of.js +2 -0
- package/full/float32-array/map.js +2 -0
- package/full/float32-array/of.js +45 -0
- package/full/float32-array/reduce-right.js +2 -0
- package/full/float32-array/reduce.js +2 -0
- package/full/float32-array/reverse.js +2 -0
- package/full/float32-array/set.js +2 -0
- package/full/float32-array/slice.js +2 -0
- package/full/float32-array/some.js +2 -0
- package/full/float32-array/sort.js +2 -0
- package/full/float32-array/subarray.js +2 -0
- package/full/float32-array/to-locale-string.js +2 -0
- package/full/float32-array/to-reversed.js +2 -0
- package/full/float32-array/to-sorted.js +2 -0
- package/full/float32-array/to-string.js +2 -0
- package/full/float32-array/unique-by.js +7 -0
- package/full/float32-array/values.js +5 -0
- package/full/float32-array/with.js +2 -0
- package/full/float64-array/at.js +2 -0
- package/full/float64-array/constructor.js +49 -0
- package/full/float64-array/copy-within.js +2 -0
- package/full/float64-array/entries.js +4 -0
- package/full/float64-array/every.js +2 -0
- package/full/float64-array/fill.js +2 -0
- package/full/float64-array/filter-reject.js +2 -0
- package/full/float64-array/filter.js +2 -0
- package/full/float64-array/find-index.js +2 -0
- package/full/float64-array/find-last-index.js +2 -0
- package/full/float64-array/find-last.js +2 -0
- package/full/float64-array/find.js +2 -0
- package/full/float64-array/for-each.js +2 -0
- package/full/float64-array/from.js +45 -0
- package/full/float64-array/includes.js +2 -0
- package/full/float64-array/index-of.js +2 -0
- package/full/float64-array/index.js +51 -0
- package/full/float64-array/iterator.js +4 -0
- package/full/float64-array/join.js +2 -0
- package/full/float64-array/keys.js +4 -0
- package/full/float64-array/last-index-of.js +2 -0
- package/full/float64-array/map.js +2 -0
- package/full/float64-array/of.js +45 -0
- package/full/float64-array/reduce-right.js +2 -0
- package/full/float64-array/reduce.js +2 -0
- package/full/float64-array/reverse.js +2 -0
- package/full/float64-array/set.js +2 -0
- package/full/float64-array/slice.js +2 -0
- package/full/float64-array/some.js +2 -0
- package/full/float64-array/sort.js +2 -0
- package/full/float64-array/subarray.js +2 -0
- package/full/float64-array/to-locale-string.js +2 -0
- package/full/float64-array/to-reversed.js +2 -0
- package/full/float64-array/to-sorted.js +2 -0
- package/full/float64-array/to-string.js +2 -0
- package/full/float64-array/unique-by.js +7 -0
- package/full/float64-array/values.js +5 -0
- package/full/float64-array/with.js +2 -0
- package/full/function/demethodize.js +1 -0
- package/full/function/index.js +6 -6
- package/full/function/instance/name.js +9 -0
- package/full/function/name.js +4 -2
- package/full/function/prototype/demethodize.js +6 -0
- package/full/get-iterator-method.js +7 -2
- package/full/get-iterator.js +7 -2
- package/full/global-this.js +3 -4
- package/full/index.js +119 -277
- package/full/instance/at.js +7 -7
- package/full/instance/clamp.js +4 -6
- package/full/instance/code-point-at.js +10 -2
- package/full/instance/concat.js +9 -2
- package/full/instance/copy-within.js +9 -2
- package/full/instance/demethodize.js +5 -3
- package/full/instance/ends-with.js +10 -2
- package/full/instance/entries.js +21 -2
- package/full/instance/fill.js +9 -2
- package/full/instance/filter-reject.js +4 -3
- package/full/instance/filter.js +9 -2
- package/full/instance/find-index.js +9 -2
- package/full/instance/find-last-index.js +9 -2
- package/full/instance/find-last.js +9 -2
- package/full/instance/find.js +9 -2
- package/full/instance/flags.js +9 -2
- package/full/instance/flat-map.js +9 -2
- package/full/instance/flat.js +9 -2
- package/full/instance/for-each.js +17 -2
- package/full/instance/includes.js +13 -2
- package/full/instance/index-of.js +9 -2
- package/full/instance/is-well-formed.js +10 -2
- package/full/instance/join.js +11 -0
- package/full/instance/keys.js +21 -2
- package/full/instance/last-index-of.js +9 -2
- package/full/instance/map.js +9 -2
- package/full/instance/match-all.js +9 -4
- package/full/instance/name.js +9 -0
- package/full/instance/pad-end.js +10 -2
- package/full/instance/pad-start.js +10 -2
- package/full/instance/push.js +9 -2
- package/full/instance/reduce-right.js +9 -2
- package/full/instance/reduce.js +9 -2
- package/full/instance/repeat.js +10 -2
- package/full/instance/replace-all.js +9 -4
- package/full/instance/reverse.js +9 -2
- package/full/instance/slice.js +9 -2
- package/full/instance/sort.js +9 -2
- package/full/instance/splice.js +9 -2
- package/full/instance/starts-with.js +10 -2
- package/full/instance/to-exponential.js +12 -0
- package/full/instance/to-fixed.js +12 -0
- package/full/instance/to-reversed.js +9 -2
- package/full/instance/to-sorted.js +9 -2
- package/full/instance/to-spliced.js +9 -2
- package/full/instance/to-well-formed.js +10 -2
- package/full/instance/trim-end.js +10 -2
- package/full/instance/trim-left.js +10 -2
- package/full/instance/trim-right.js +10 -2
- package/full/instance/trim-start.js +10 -2
- package/full/instance/trim.js +10 -2
- package/full/instance/unique-by.js +4 -3
- package/full/instance/unshift.js +9 -2
- package/full/instance/values.js +24 -2
- package/full/instance/with.js +9 -2
- package/full/int16-array/at.js +2 -0
- package/full/int16-array/constructor.js +49 -0
- package/full/int16-array/copy-within.js +2 -0
- package/full/int16-array/entries.js +4 -0
- package/full/int16-array/every.js +2 -0
- package/full/int16-array/fill.js +2 -0
- package/full/int16-array/filter-reject.js +2 -0
- package/full/int16-array/filter.js +2 -0
- package/full/int16-array/find-index.js +2 -0
- package/full/int16-array/find-last-index.js +2 -0
- package/full/int16-array/find-last.js +2 -0
- package/full/int16-array/find.js +2 -0
- package/full/int16-array/for-each.js +2 -0
- package/full/int16-array/from.js +45 -0
- package/full/int16-array/includes.js +2 -0
- package/full/int16-array/index-of.js +2 -0
- package/full/int16-array/index.js +51 -0
- package/full/int16-array/iterator.js +4 -0
- package/full/int16-array/join.js +2 -0
- package/full/int16-array/keys.js +4 -0
- package/full/int16-array/last-index-of.js +2 -0
- package/full/int16-array/map.js +2 -0
- package/full/int16-array/of.js +45 -0
- package/full/int16-array/reduce-right.js +2 -0
- package/full/int16-array/reduce.js +2 -0
- package/full/int16-array/reverse.js +2 -0
- package/full/int16-array/set.js +2 -0
- package/full/int16-array/slice.js +2 -0
- package/full/int16-array/some.js +2 -0
- package/full/int16-array/sort.js +2 -0
- package/full/int16-array/subarray.js +2 -0
- package/full/int16-array/to-locale-string.js +2 -0
- package/full/int16-array/to-reversed.js +2 -0
- package/full/int16-array/to-sorted.js +2 -0
- package/full/int16-array/to-string.js +2 -0
- package/full/int16-array/unique-by.js +7 -0
- package/full/int16-array/values.js +5 -0
- package/full/int16-array/with.js +2 -0
- package/full/int32-array/at.js +2 -0
- package/full/int32-array/constructor.js +49 -0
- package/full/int32-array/copy-within.js +2 -0
- package/full/int32-array/entries.js +4 -0
- package/full/int32-array/every.js +2 -0
- package/full/int32-array/fill.js +2 -0
- package/full/int32-array/filter-reject.js +2 -0
- package/full/int32-array/filter.js +2 -0
- package/full/int32-array/find-index.js +2 -0
- package/full/int32-array/find-last-index.js +2 -0
- package/full/int32-array/find-last.js +2 -0
- package/full/int32-array/find.js +2 -0
- package/full/int32-array/for-each.js +2 -0
- package/full/int32-array/from.js +45 -0
- package/full/int32-array/includes.js +2 -0
- package/full/int32-array/index-of.js +2 -0
- package/full/int32-array/index.js +51 -0
- package/full/int32-array/iterator.js +4 -0
- package/full/int32-array/join.js +2 -0
- package/full/int32-array/keys.js +4 -0
- package/full/int32-array/last-index-of.js +2 -0
- package/full/int32-array/map.js +2 -0
- package/full/int32-array/of.js +45 -0
- package/full/int32-array/reduce-right.js +2 -0
- package/full/int32-array/reduce.js +2 -0
- package/full/int32-array/reverse.js +2 -0
- package/full/int32-array/set.js +2 -0
- package/full/int32-array/slice.js +2 -0
- package/full/int32-array/some.js +2 -0
- package/full/int32-array/sort.js +2 -0
- package/full/int32-array/subarray.js +2 -0
- package/full/int32-array/to-locale-string.js +2 -0
- package/full/int32-array/to-reversed.js +2 -0
- package/full/int32-array/to-sorted.js +2 -0
- package/full/int32-array/to-string.js +2 -0
- package/full/int32-array/unique-by.js +7 -0
- package/full/int32-array/values.js +5 -0
- package/full/int32-array/with.js +2 -0
- package/full/int8-array/at.js +2 -0
- package/full/int8-array/constructor.js +49 -0
- package/full/int8-array/copy-within.js +2 -0
- package/full/int8-array/entries.js +4 -0
- package/full/int8-array/every.js +2 -0
- package/full/int8-array/fill.js +2 -0
- package/full/int8-array/filter-reject.js +2 -0
- package/full/int8-array/filter.js +2 -0
- package/full/int8-array/find-index.js +2 -0
- package/full/int8-array/find-last-index.js +2 -0
- package/full/int8-array/find-last.js +2 -0
- package/full/int8-array/find.js +2 -0
- package/full/int8-array/for-each.js +2 -0
- package/full/int8-array/from.js +45 -0
- package/full/int8-array/includes.js +2 -0
- package/full/int8-array/index-of.js +2 -0
- package/full/int8-array/index.js +51 -0
- package/full/int8-array/iterator.js +4 -0
- package/full/int8-array/join.js +2 -0
- package/full/int8-array/keys.js +4 -0
- package/full/int8-array/last-index-of.js +2 -0
- package/full/int8-array/map.js +2 -0
- package/full/int8-array/of.js +45 -0
- package/full/int8-array/reduce-right.js +2 -0
- package/full/int8-array/reduce.js +2 -0
- package/full/int8-array/reverse.js +2 -0
- package/full/int8-array/set.js +2 -0
- package/full/int8-array/slice.js +2 -0
- package/full/int8-array/some.js +2 -0
- package/full/int8-array/sort.js +2 -0
- package/full/int8-array/subarray.js +2 -0
- package/full/int8-array/to-locale-string.js +2 -0
- package/full/int8-array/to-reversed.js +2 -0
- package/full/int8-array/to-sorted.js +2 -0
- package/full/int8-array/to-string.js +2 -0
- package/full/int8-array/unique-by.js +7 -0
- package/full/int8-array/values.js +5 -0
- package/full/int8-array/with.js +2 -0
- package/full/is-iterable.js +7 -2
- package/full/iterator/concat.js +29 -3
- package/full/iterator/constructor.js +32 -0
- package/full/iterator/drop.js +6 -2
- package/full/iterator/every.js +9 -2
- package/full/iterator/filter.js +6 -2
- package/full/iterator/find.js +9 -2
- package/full/iterator/flat-map.js +9 -2
- package/full/iterator/for-each.js +9 -2
- package/full/iterator/from.js +29 -3
- package/full/iterator/includes.js +11 -0
- package/full/iterator/index.js +33 -6
- package/full/iterator/join.js +11 -0
- package/full/iterator/map.js +6 -2
- package/full/iterator/prototype/chunks.js +8 -0
- package/full/iterator/prototype/drop.js +8 -0
- package/full/iterator/prototype/every.js +11 -0
- package/full/iterator/prototype/filter.js +8 -0
- package/full/iterator/prototype/find.js +11 -0
- package/full/iterator/prototype/flat-map.js +11 -0
- package/full/iterator/prototype/for-each.js +11 -0
- package/full/iterator/prototype/includes.js +11 -0
- package/full/iterator/prototype/join.js +11 -0
- package/full/iterator/prototype/map.js +8 -0
- package/full/iterator/prototype/reduce.js +11 -0
- package/full/iterator/prototype/some.js +11 -0
- package/full/iterator/prototype/take.js +8 -0
- package/full/iterator/prototype/to-array.js +11 -0
- package/full/iterator/prototype/to-async.js +13 -0
- package/full/iterator/prototype/windows.js +8 -0
- package/full/iterator/range.js +14 -7
- package/full/iterator/reduce.js +9 -2
- package/full/iterator/some.js +9 -2
- package/full/iterator/take.js +6 -2
- package/full/iterator/to-array.js +9 -2
- package/full/iterator/to-async.js +11 -2
- package/full/iterator/zip-keyed.js +30 -3
- package/full/iterator/zip.js +29 -3
- package/full/json/index.js +10 -2
- package/full/json/is-raw-json.js +4 -2
- package/full/json/parse.js +4 -2
- package/full/json/raw-json.js +4 -2
- package/full/json/stringify.js +5 -2
- package/full/map/constructor.js +13 -0
- package/full/map/from.js +7 -19
- package/full/map/get-or-insert-computed.js +9 -2
- package/full/map/get-or-insert.js +9 -2
- package/full/map/group-by.js +12 -18
- package/full/map/index.js +12 -23
- package/full/map/of.js +9 -19
- package/full/map/prototype/get-or-insert-computed.js +11 -0
- package/full/map/prototype/get-or-insert.js +11 -0
- package/full/math/acosh.js +4 -2
- package/full/math/asinh.js +4 -2
- package/full/math/atanh.js +4 -2
- package/full/math/cbrt.js +4 -2
- package/full/math/clz32.js +4 -2
- package/full/math/cosh.js +4 -2
- package/full/math/expm1.js +4 -2
- package/full/math/f16round.js +4 -2
- package/full/math/fround.js +4 -2
- package/full/math/hypot.js +4 -2
- package/full/math/imul.js +4 -2
- package/full/math/index.js +27 -17
- package/full/math/log10.js +4 -2
- package/full/math/log1p.js +4 -2
- package/full/math/log2.js +4 -2
- package/full/math/sign.js +4 -2
- package/full/math/sinh.js +4 -2
- package/full/math/sum-precise.js +8 -2
- package/full/math/tanh.js +4 -2
- package/full/math/trunc.js +4 -2
- package/full/number/clamp.js +1 -0
- package/full/number/constructor.js +4 -2
- package/full/number/epsilon.js +4 -2
- package/full/number/index.js +18 -6
- package/full/number/instance/clamp.js +12 -0
- package/full/number/instance/to-exponential.js +12 -0
- package/full/number/instance/to-fixed.js +12 -0
- package/full/number/is-finite.js +4 -2
- package/full/number/is-integer.js +4 -2
- package/full/number/is-nan.js +4 -2
- package/full/number/is-safe-integer.js +4 -2
- package/full/number/max-safe-integer.js +4 -2
- package/full/number/min-safe-integer.js +4 -2
- package/full/number/parse-float.js +5 -2
- package/full/number/parse-int.js +5 -2
- package/full/number/prototype/clamp.js +6 -0
- package/full/number/prototype/to-exponential.js +7 -0
- package/full/number/prototype/to-fixed.js +7 -0
- package/full/number/to-exponential.js +5 -2
- package/full/number/to-fixed.js +5 -2
- package/full/object/assign.js +4 -2
- package/full/object/create.js +5 -2
- package/full/object/define-getter.js +4 -2
- package/full/object/define-properties.js +5 -2
- package/full/object/define-property.js +5 -2
- package/full/object/define-setter.js +4 -2
- package/full/object/entries.js +4 -2
- package/full/object/freeze.js +4 -2
- package/full/object/from-entries.js +8 -2
- package/full/object/get-own-property-descriptor.js +7 -2
- package/full/object/get-own-property-descriptors.js +4 -2
- package/full/object/get-own-property-names.js +7 -2
- package/full/object/get-own-property-symbols.js +4 -2
- package/full/object/get-prototype-of.js +4 -2
- package/full/object/group-by.js +8 -2
- package/full/object/has-own.js +3 -4
- package/full/object/index.js +33 -7
- package/full/object/is-extensible.js +4 -2
- package/full/object/is-frozen.js +4 -2
- package/full/object/is-sealed.js +4 -2
- package/full/object/is.js +4 -2
- package/full/object/keys-length.js +6 -0
- package/full/object/keys.js +4 -2
- package/full/object/lookup-getter.js +4 -2
- package/full/object/lookup-setter.js +4 -2
- package/full/object/prevent-extensions.js +4 -2
- package/full/object/proto.js +1 -3
- package/full/object/prototype/define-getter.js +6 -0
- package/full/object/prototype/define-setter.js +6 -0
- package/full/object/prototype/lookup-getter.js +6 -0
- package/full/object/prototype/lookup-setter.js +6 -0
- package/full/object/prototype/to-string.js +6 -0
- package/full/object/seal.js +4 -2
- package/full/object/set-prototype-of.js +4 -2
- package/full/object/to-string.js +4 -2
- package/full/object/values.js +4 -2
- package/full/parse-float.js +4 -2
- package/full/parse-int.js +4 -2
- package/full/promise/all-keyed.js +19 -0
- package/full/promise/all-settled-keyed.js +19 -0
- package/full/promise/all-settled.js +18 -4
- package/full/promise/all.js +21 -0
- package/full/promise/any.js +19 -5
- package/full/promise/catch.js +8 -0
- package/full/promise/constructor.js +9 -0
- package/full/promise/finally.js +6 -2
- package/full/promise/index.js +22 -6
- package/full/promise/prototype/catch.js +8 -0
- package/full/promise/prototype/finally.js +8 -0
- package/full/promise/race.js +21 -0
- package/full/promise/reject.js +17 -0
- package/full/promise/resolve.js +17 -0
- package/full/promise/try.js +15 -2
- package/full/promise/with-resolvers.js +15 -2
- package/full/queue-microtask.js +4 -2
- package/full/range-error/constructor.js +6 -0
- package/full/range-error/index.js +7 -0
- package/full/range-error/is-error.js +6 -0
- package/full/reference-error/constructor.js +6 -0
- package/full/reference-error/index.js +7 -0
- package/full/reference-error/is-error.js +6 -0
- package/full/reflect/apply.js +4 -2
- package/full/reflect/construct.js +4 -2
- package/full/reflect/define-property.js +4 -2
- package/full/reflect/delete-property.js +4 -2
- package/full/reflect/get-own-property-descriptor.js +4 -2
- package/full/reflect/get-prototype-of.js +4 -2
- package/full/reflect/get.js +4 -2
- package/full/reflect/has.js +4 -2
- package/full/reflect/index.js +18 -11
- package/full/reflect/is-extensible.js +4 -2
- package/full/reflect/own-keys.js +4 -2
- package/full/reflect/prevent-extensions.js +4 -2
- package/full/reflect/set-prototype-of.js +4 -2
- package/full/reflect/set.js +4 -2
- package/full/regexp/constructor.js +4 -3
- package/full/regexp/dot-all.js +3 -3
- package/full/regexp/escape.js +6 -2
- package/full/regexp/exec.js +2 -0
- package/full/regexp/flags.js +4 -2
- package/full/regexp/index.js +14 -3
- package/full/regexp/instance/flags.js +11 -0
- package/full/regexp/match.js +2 -3
- package/full/regexp/replace.js +2 -3
- package/full/regexp/search.js +2 -3
- package/full/regexp/split.js +2 -3
- package/full/regexp/sticky.js +3 -3
- package/full/regexp/test.js +5 -2
- package/full/regexp/to-string.js +1 -3
- package/full/self.js +4 -2
- package/full/set/constructor.js +18 -0
- package/full/set/difference.js +4 -2
- package/full/set/from.js +12 -19
- package/full/set/index.js +16 -18
- package/full/set/intersection.js +4 -2
- package/full/set/is-disjoint-from.js +4 -2
- package/full/set/is-subset-of.js +4 -2
- package/full/set/is-superset-of.js +4 -2
- package/full/set/of.js +14 -19
- package/full/set/prototype/difference.js +11 -0
- package/full/set/prototype/intersection.js +11 -0
- package/full/set/prototype/is-disjoint-from.js +11 -0
- package/full/set/prototype/is-subset-of.js +11 -0
- package/full/set/prototype/is-superset-of.js +11 -0
- package/full/set/prototype/symmetric-difference.js +11 -0
- package/full/set/prototype/union.js +11 -0
- package/full/set/symmetric-difference.js +4 -2
- package/full/set/union.js +4 -2
- package/full/set-immediate.js +4 -2
- package/full/string/anchor.js +4 -2
- package/full/string/at.js +4 -4
- package/full/string/big.js +4 -2
- package/full/string/blink.js +4 -2
- package/full/string/bold.js +4 -2
- package/full/string/code-point-at.js +4 -2
- package/full/string/cooked.js +3 -2
- package/full/string/dedent.js +8 -3
- package/full/string/ends-with.js +4 -2
- package/full/string/fixed.js +4 -2
- package/full/string/fontcolor.js +4 -2
- package/full/string/fontsize.js +4 -2
- package/full/string/from-code-point.js +4 -2
- package/full/string/includes.js +4 -2
- package/full/string/index.js +45 -8
- package/full/string/instance/anchor.js +12 -0
- package/full/string/instance/at.js +12 -0
- package/full/string/instance/big.js +12 -0
- package/full/string/instance/blink.js +12 -0
- package/full/string/instance/bold.js +12 -0
- package/full/string/instance/code-point-at.js +12 -0
- package/full/string/instance/ends-with.js +12 -0
- package/full/string/instance/fixed.js +12 -0
- package/full/string/instance/fontcolor.js +12 -0
- package/full/string/instance/fontsize.js +12 -0
- package/full/string/instance/includes.js +12 -0
- package/full/string/instance/is-well-formed.js +12 -0
- package/full/string/instance/italics.js +12 -0
- package/full/string/instance/link.js +12 -0
- package/full/string/instance/match-all.js +12 -0
- package/full/string/instance/pad-end.js +12 -0
- package/full/string/instance/pad-start.js +12 -0
- package/full/string/instance/repeat.js +12 -0
- package/full/string/instance/replace-all.js +12 -0
- package/full/string/instance/small.js +12 -0
- package/full/string/instance/starts-with.js +12 -0
- package/full/string/instance/strike.js +12 -0
- package/full/string/instance/sub.js +12 -0
- package/full/string/instance/sup.js +12 -0
- package/full/string/instance/to-well-formed.js +12 -0
- package/full/string/instance/trim-end.js +12 -0
- package/full/string/instance/trim-left.js +12 -0
- package/full/string/instance/trim-right.js +12 -0
- package/full/string/instance/trim-start.js +12 -0
- package/full/string/instance/trim.js +12 -0
- package/full/string/is-well-formed.js +4 -2
- package/full/string/italics.js +4 -2
- package/full/string/iterator.js +6 -2
- package/full/string/link.js +4 -2
- package/full/string/match-all.js +5 -4
- package/full/string/match.js +2 -3
- package/full/string/pad-end.js +5 -2
- package/full/string/pad-start.js +5 -2
- package/full/string/prototype/anchor.js +6 -0
- package/full/string/prototype/at.js +6 -0
- package/full/string/prototype/big.js +6 -0
- package/full/string/prototype/blink.js +6 -0
- package/full/string/prototype/bold.js +6 -0
- package/full/string/prototype/code-point-at.js +6 -0
- package/full/string/prototype/ends-with.js +6 -0
- package/full/string/prototype/fixed.js +6 -0
- package/full/string/prototype/fontcolor.js +6 -0
- package/full/string/prototype/fontsize.js +6 -0
- package/full/string/prototype/includes.js +6 -0
- package/full/string/prototype/is-well-formed.js +6 -0
- package/full/string/prototype/italics.js +6 -0
- package/full/string/prototype/iterator.js +7 -0
- package/full/string/prototype/link.js +6 -0
- package/full/string/prototype/match-all.js +8 -0
- package/full/string/prototype/pad-end.js +7 -0
- package/full/string/prototype/pad-start.js +7 -0
- package/full/string/prototype/repeat.js +6 -0
- package/full/string/prototype/replace-all.js +8 -0
- package/full/string/prototype/small.js +6 -0
- package/full/string/prototype/starts-with.js +6 -0
- package/full/string/prototype/strike.js +6 -0
- package/full/string/prototype/sub.js +6 -0
- package/full/string/prototype/sup.js +6 -0
- package/full/string/prototype/to-well-formed.js +6 -0
- package/full/string/prototype/trim-end.js +6 -0
- package/full/string/prototype/trim-left.js +6 -0
- package/full/string/prototype/trim-right.js +6 -0
- package/full/string/prototype/trim-start.js +6 -0
- package/full/string/prototype/trim.js +6 -0
- package/full/string/raw.js +4 -2
- package/full/string/repeat.js +4 -2
- package/full/string/replace-all.js +5 -4
- package/full/string/replace.js +2 -3
- package/full/string/search.js +2 -3
- package/full/string/small.js +4 -2
- package/full/string/split.js +2 -3
- package/full/string/starts-with.js +4 -2
- package/full/string/strike.js +4 -2
- package/full/string/sub.js +4 -2
- package/full/string/sup.js +4 -2
- package/full/string/to-well-formed.js +4 -2
- package/full/string/trim-end.js +4 -2
- package/full/string/trim-left.js +4 -2
- package/full/string/trim-right.js +4 -2
- package/full/string/trim-start.js +4 -2
- package/full/string/trim.js +4 -2
- package/full/structured-clone.js +13 -2
- package/full/suppressed-error/constructor.js +6 -0
- package/full/suppressed-error/index.js +7 -0
- package/full/suppressed-error/is-error.js +6 -0
- package/full/symbol/async-dispose.js +10 -2
- package/full/symbol/async-iterator.js +4 -2
- package/full/symbol/constructor.js +8 -0
- package/full/symbol/custom-matcher.js +3 -2
- package/full/symbol/dispose.js +5 -2
- package/full/symbol/for.js +7 -2
- package/full/symbol/has-instance.js +5 -2
- package/full/symbol/index.js +25 -11
- package/full/symbol/is-concat-spreadable.js +4 -2
- package/full/symbol/is-registered-symbol.js +6 -3
- package/full/symbol/is-well-known-symbol.js +5 -3
- package/full/symbol/iterator.js +8 -2
- package/full/symbol/key-for.js +4 -2
- package/full/symbol/match-all.js +4 -2
- package/full/symbol/match.js +4 -2
- package/full/symbol/metadata.js +5 -2
- package/full/symbol/replace.js +4 -2
- package/full/symbol/search.js +4 -2
- package/full/symbol/species.js +4 -2
- package/full/symbol/split.js +4 -2
- package/full/symbol/to-primitive.js +5 -2
- package/full/symbol/to-string-tag.js +7 -2
- package/full/symbol/unscopables.js +4 -2
- package/full/syntax-error/constructor.js +6 -0
- package/full/syntax-error/index.js +7 -0
- package/full/syntax-error/is-error.js +6 -0
- package/full/type-error/constructor.js +6 -0
- package/full/type-error/index.js +7 -0
- package/full/type-error/is-error.js +6 -0
- package/full/typed-array/at.js +1 -6
- package/full/typed-array/constructors.js +18 -0
- package/full/typed-array/copy-within.js +1 -3
- package/full/typed-array/entries.js +3 -3
- package/full/typed-array/every.js +1 -3
- package/full/typed-array/fill.js +1 -3
- package/full/typed-array/filter.js +1 -3
- package/full/typed-array/find-index.js +1 -3
- package/full/typed-array/find-last-index.js +1 -3
- package/full/typed-array/find-last.js +1 -3
- package/full/typed-array/find.js +1 -3
- package/full/typed-array/for-each.js +1 -3
- package/full/typed-array/from-base64.js +48 -3
- package/full/typed-array/from-hex.js +48 -3
- package/full/typed-array/from.js +48 -3
- package/full/typed-array/includes.js +1 -3
- package/full/typed-array/index-of.js +1 -3
- package/full/typed-array/index.js +61 -10
- package/full/typed-array/iterator.js +3 -3
- package/full/typed-array/join.js +1 -3
- package/full/typed-array/keys.js +3 -3
- package/full/typed-array/last-index-of.js +1 -3
- package/full/typed-array/map.js +1 -3
- package/full/typed-array/methods.js +49 -11
- package/full/typed-array/of.js +48 -3
- package/full/typed-array/reduce-right.js +1 -3
- package/full/typed-array/reduce.js +1 -3
- package/full/typed-array/reverse.js +1 -3
- package/full/typed-array/set-from-base64.js +1 -3
- package/full/typed-array/set-from-hex.js +1 -3
- package/full/typed-array/set.js +1 -3
- package/full/typed-array/slice.js +1 -3
- package/full/typed-array/some.js +1 -3
- package/full/typed-array/sort.js +1 -3
- package/full/typed-array/subarray.js +1 -3
- package/full/typed-array/to-base64.js +1 -3
- package/full/typed-array/to-hex.js +1 -3
- package/full/typed-array/to-locale-string.js +1 -3
- package/full/typed-array/to-reversed.js +1 -3
- package/full/typed-array/to-sorted.js +1 -3
- package/full/typed-array/to-string.js +1 -3
- package/full/typed-array/unique-by.js +5 -1
- package/full/typed-array/values.js +4 -3
- package/full/typed-array/with.js +1 -3
- package/full/uint16-array/at.js +2 -0
- package/full/uint16-array/constructor.js +49 -0
- package/full/uint16-array/copy-within.js +2 -0
- package/full/uint16-array/entries.js +4 -0
- package/full/uint16-array/every.js +2 -0
- package/full/uint16-array/fill.js +2 -0
- package/full/uint16-array/filter-reject.js +2 -0
- package/full/uint16-array/filter.js +2 -0
- package/full/uint16-array/find-index.js +2 -0
- package/full/uint16-array/find-last-index.js +2 -0
- package/full/uint16-array/find-last.js +2 -0
- package/full/uint16-array/find.js +2 -0
- package/full/uint16-array/for-each.js +2 -0
- package/full/uint16-array/from.js +45 -0
- package/full/uint16-array/includes.js +2 -0
- package/full/uint16-array/index-of.js +2 -0
- package/full/uint16-array/index.js +51 -0
- package/full/uint16-array/iterator.js +4 -0
- package/full/uint16-array/join.js +2 -0
- package/full/uint16-array/keys.js +4 -0
- package/full/uint16-array/last-index-of.js +2 -0
- package/full/uint16-array/map.js +2 -0
- package/full/uint16-array/of.js +45 -0
- package/full/uint16-array/reduce-right.js +2 -0
- package/full/uint16-array/reduce.js +2 -0
- package/full/uint16-array/reverse.js +2 -0
- package/full/uint16-array/set.js +2 -0
- package/full/uint16-array/slice.js +2 -0
- package/full/uint16-array/some.js +2 -0
- package/full/uint16-array/sort.js +2 -0
- package/full/uint16-array/subarray.js +2 -0
- package/full/uint16-array/to-locale-string.js +2 -0
- package/full/uint16-array/to-reversed.js +2 -0
- package/full/uint16-array/to-sorted.js +2 -0
- package/full/uint16-array/to-string.js +2 -0
- package/full/uint16-array/unique-by.js +7 -0
- package/full/uint16-array/values.js +5 -0
- package/full/uint16-array/with.js +2 -0
- package/full/uint32-array/at.js +2 -0
- package/full/uint32-array/constructor.js +49 -0
- package/full/uint32-array/copy-within.js +2 -0
- package/full/uint32-array/entries.js +4 -0
- package/full/uint32-array/every.js +2 -0
- package/full/uint32-array/fill.js +2 -0
- package/full/uint32-array/filter-reject.js +2 -0
- package/full/uint32-array/filter.js +2 -0
- package/full/uint32-array/find-index.js +2 -0
- package/full/uint32-array/find-last-index.js +2 -0
- package/full/uint32-array/find-last.js +2 -0
- package/full/uint32-array/find.js +2 -0
- package/full/uint32-array/for-each.js +2 -0
- package/full/uint32-array/from.js +45 -0
- package/full/uint32-array/includes.js +2 -0
- package/full/uint32-array/index-of.js +2 -0
- package/full/uint32-array/index.js +51 -0
- package/full/uint32-array/iterator.js +4 -0
- package/full/uint32-array/join.js +2 -0
- package/full/uint32-array/keys.js +4 -0
- package/full/uint32-array/last-index-of.js +2 -0
- package/full/uint32-array/map.js +2 -0
- package/full/uint32-array/of.js +45 -0
- package/full/uint32-array/reduce-right.js +2 -0
- package/full/uint32-array/reduce.js +2 -0
- package/full/uint32-array/reverse.js +2 -0
- package/full/uint32-array/set.js +2 -0
- package/full/uint32-array/slice.js +2 -0
- package/full/uint32-array/some.js +2 -0
- package/full/uint32-array/sort.js +2 -0
- package/full/uint32-array/subarray.js +2 -0
- package/full/uint32-array/to-locale-string.js +2 -0
- package/full/uint32-array/to-reversed.js +2 -0
- package/full/uint32-array/to-sorted.js +2 -0
- package/full/uint32-array/to-string.js +2 -0
- package/full/uint32-array/unique-by.js +7 -0
- package/full/uint32-array/values.js +5 -0
- package/full/uint32-array/with.js +2 -0
- package/full/uint8-array/at.js +2 -0
- package/full/uint8-array/constructor.js +53 -0
- package/full/uint8-array/copy-within.js +2 -0
- package/full/uint8-array/entries.js +4 -0
- package/full/uint8-array/every.js +2 -0
- package/full/uint8-array/fill.js +2 -0
- package/full/uint8-array/filter-reject.js +2 -0
- package/full/uint8-array/filter.js +2 -0
- package/full/uint8-array/find-index.js +2 -0
- package/full/uint8-array/find-last-index.js +2 -0
- package/full/uint8-array/find-last.js +2 -0
- package/full/uint8-array/find.js +2 -0
- package/full/uint8-array/for-each.js +2 -0
- package/full/uint8-array/from-base64.js +49 -0
- package/full/uint8-array/from-hex.js +49 -0
- package/full/uint8-array/from.js +49 -0
- package/full/uint8-array/includes.js +2 -0
- package/full/uint8-array/index-of.js +2 -0
- package/full/uint8-array/index.js +57 -0
- package/full/uint8-array/iterator.js +4 -0
- package/full/uint8-array/join.js +2 -0
- package/full/uint8-array/keys.js +4 -0
- package/full/uint8-array/last-index-of.js +2 -0
- package/full/uint8-array/map.js +2 -0
- package/full/uint8-array/of.js +49 -0
- package/full/uint8-array/reduce-right.js +2 -0
- package/full/uint8-array/reduce.js +2 -0
- package/full/uint8-array/reverse.js +2 -0
- package/full/uint8-array/set-from-base64.js +2 -0
- package/full/uint8-array/set-from-hex.js +2 -0
- package/full/uint8-array/set.js +2 -0
- package/full/uint8-array/slice.js +2 -0
- package/full/uint8-array/some.js +2 -0
- package/full/uint8-array/sort.js +2 -0
- package/full/uint8-array/subarray.js +2 -0
- package/full/uint8-array/to-base64.js +2 -0
- package/full/uint8-array/to-hex.js +2 -0
- package/full/uint8-array/to-locale-string.js +2 -0
- package/full/uint8-array/to-reversed.js +2 -0
- package/full/uint8-array/to-sorted.js +2 -0
- package/full/uint8-array/to-string.js +2 -0
- package/full/uint8-array/unique-by.js +7 -0
- package/full/uint8-array/values.js +5 -0
- package/full/uint8-array/with.js +2 -0
- package/full/uint8-clamped-array/at.js +2 -0
- package/full/uint8-clamped-array/constructor.js +49 -0
- package/full/uint8-clamped-array/copy-within.js +2 -0
- package/full/uint8-clamped-array/entries.js +4 -0
- package/full/uint8-clamped-array/every.js +2 -0
- package/full/uint8-clamped-array/fill.js +2 -0
- package/full/uint8-clamped-array/filter-reject.js +2 -0
- package/full/uint8-clamped-array/filter.js +2 -0
- package/full/uint8-clamped-array/find-index.js +2 -0
- package/full/uint8-clamped-array/find-last-index.js +2 -0
- package/full/uint8-clamped-array/find-last.js +2 -0
- package/full/uint8-clamped-array/find.js +2 -0
- package/full/uint8-clamped-array/for-each.js +2 -0
- package/full/uint8-clamped-array/from.js +45 -0
- package/full/uint8-clamped-array/includes.js +2 -0
- package/full/uint8-clamped-array/index-of.js +2 -0
- package/full/uint8-clamped-array/index.js +51 -0
- package/full/uint8-clamped-array/iterator.js +4 -0
- package/full/uint8-clamped-array/join.js +2 -0
- package/full/uint8-clamped-array/keys.js +4 -0
- package/full/uint8-clamped-array/last-index-of.js +2 -0
- package/full/uint8-clamped-array/map.js +2 -0
- package/full/uint8-clamped-array/of.js +45 -0
- package/full/uint8-clamped-array/reduce-right.js +2 -0
- package/full/uint8-clamped-array/reduce.js +2 -0
- package/full/uint8-clamped-array/reverse.js +2 -0
- package/full/uint8-clamped-array/set.js +2 -0
- package/full/uint8-clamped-array/slice.js +2 -0
- package/full/uint8-clamped-array/some.js +2 -0
- package/full/uint8-clamped-array/sort.js +2 -0
- package/full/uint8-clamped-array/subarray.js +2 -0
- package/full/uint8-clamped-array/to-locale-string.js +2 -0
- package/full/uint8-clamped-array/to-reversed.js +2 -0
- package/full/uint8-clamped-array/to-sorted.js +2 -0
- package/full/uint8-clamped-array/to-string.js +2 -0
- package/full/uint8-clamped-array/unique-by.js +7 -0
- package/full/uint8-clamped-array/values.js +5 -0
- package/full/uint8-clamped-array/with.js +2 -0
- package/full/uri-error/constructor.js +6 -0
- package/full/uri-error/index.js +7 -0
- package/full/uri-error/is-error.js +6 -0
- package/full/url/can-parse.js +13 -2
- package/full/url/constructor.js +18 -0
- package/full/url/index.js +18 -2
- package/full/url/parse.js +13 -2
- package/full/url/to-json.js +10 -3
- package/full/url-search-params/constructor.js +14 -0
- package/full/url-search-params/index.js +12 -2
- package/full/weak-map/constructor.js +12 -0
- package/full/weak-map/from.js +6 -7
- package/full/weak-map/get-or-insert-computed.js +9 -2
- package/full/weak-map/get-or-insert.js +9 -2
- package/full/weak-map/index.js +9 -8
- package/full/weak-map/of.js +8 -7
- package/full/weak-map/prototype/get-or-insert-computed.js +11 -0
- package/full/weak-map/prototype/get-or-insert.js +11 -0
- package/full/weak-set/constructor.js +10 -0
- package/full/weak-set/from.js +4 -5
- package/full/weak-set/index.js +7 -4
- package/full/weak-set/of.js +6 -5
- package/index.js +334 -1
- package/internals/a-typed-array-constructor.js +10 -0
- package/internals/a-typed-array.js +9 -0
- package/internals/add-disposable-resource.js +2 -1
- package/internals/add-to-unscopables.js +2 -2
- package/internals/array-buffer-byte-length.js +3 -5
- package/internals/array-buffer-is-detached.js +1 -2
- package/internals/array-buffer-non-extensible.js +1 -1
- package/internals/array-buffer-transfer.js +9 -7
- package/internals/array-fill.js +2 -1
- package/internals/array-includes.js +12 -29
- package/internals/array-iteration-from-last.js +3 -5
- package/internals/array-iteration.js +13 -30
- package/internals/array-iterator-constructor.js +34 -0
- package/internals/array-reduce.js +5 -7
- package/internals/array-set-length.js +2 -8
- package/internals/array-species-constructor.js +2 -1
- package/internals/async-from-sync-iterator.js +11 -8
- package/internals/async-iterator-close.js +7 -1
- package/internals/async-iterator-create-proxy.js +26 -9
- package/internals/async-iterator-iteration.js +7 -2
- package/internals/async-iterator-prototype.js +2 -3
- package/internals/base64-map.js +3 -4
- package/internals/check-correctness-of-iteration.js +3 -3
- package/internals/classof.js +2 -8
- package/internals/collection-from.js +3 -0
- package/internals/collection-strong.js +112 -86
- package/internals/collection-weak.js +54 -67
- package/internals/collection.js +5 -14
- package/internals/copy-constructor-properties.js +6 -9
- package/internals/create-non-enumerable-property.js +1 -5
- package/internals/create-property-descriptor.js +1 -1
- package/internals/create-property.js +1 -3
- package/internals/data-view-int8-conversion-bug.js +7 -0
- package/internals/define-built-in-accessor.js +2 -2
- package/internals/define-built-in.js +1 -1
- package/internals/define-built-ins.js +3 -1
- package/internals/define-global-property.js +1 -4
- package/internals/detach-transferable.js +2 -3
- package/internals/document-create-element.js +1 -3
- package/internals/dom-exception-constants.js +1 -1
- package/internals/dom-iterables-define-method.js +24 -0
- package/internals/dom-iterables.js +1 -1
- package/internals/environment-is-ie11.js +4 -0
- package/internals/error-stack-installable.js +0 -1
- package/internals/export-typed-array-method.js +28 -0
- package/internals/export-typed-array-static.js +28 -0
- package/internals/export.js +9 -22
- package/internals/fix-regexp-well-known-symbol-logic.js +1 -7
- package/internals/flatten-into-array.js +2 -1
- package/internals/function-apply.js +3 -9
- package/internals/function-bind-context.js +2 -7
- package/internals/function-bind.js +1 -33
- package/internals/function-call.js +2 -6
- package/internals/function-get-name.js +18 -0
- package/internals/function-name.js +2 -5
- package/internals/function-uncurry-this-accessor.js +0 -1
- package/internals/function-uncurry-this.js +2 -11
- package/internals/get-async-iterator-flattenable.js +3 -0
- package/internals/get-built-in-static-method.js +7 -0
- package/internals/get-built-in.js +3 -6
- package/internals/get-internal-iterator.js +1 -0
- package/internals/get-iterator-direct.js +1 -1
- package/internals/get-iterator-flattenable.js +3 -0
- package/internals/get-iterator-method.js +6 -5
- package/internals/get-set-record.js +1 -1
- package/internals/get-substitution.js +2 -3
- package/internals/get-typed-array-constructor.js +6 -0
- package/internals/inherit-if-required.js +6 -14
- package/internals/internal-state-getter-for.js +14 -0
- package/internals/internal-state.js +18 -57
- package/internals/is-array-iterator-method.js +1 -2
- package/internals/is-constructor.js +4 -6
- package/internals/is-iterable.js +2 -6
- package/internals/is-typed-array.js +7 -0
- package/internals/iterator-cleanup-state.js +5 -0
- package/internals/iterator-create-constructor.js +3 -9
- package/internals/iterator-create-proxy.js +18 -12
- package/internals/iterator-define.js +5 -94
- package/internals/iterator-helper-without-closing-on-early-error.js +1 -1
- package/internals/iterator-normalize-method.js +29 -0
- package/internals/iterator-prototype.js +43 -0
- package/internals/iterator-zip.js +1 -1
- package/internals/iterators.js +1 -2
- package/internals/make-built-in.js +12 -28
- package/internals/map-helpers.js +3 -4
- package/internals/map-native.js +12 -0
- package/internals/microtask.js +3 -5
- package/internals/native-raw-json.js +0 -1
- package/internals/object-define-properties.js +1 -20
- package/internals/object-define-property.js +1 -43
- package/internals/object-get-own-property-descriptor.js +1 -20
- package/internals/object-get-own-property-names-external.js +2 -3
- package/internals/object-get-own-property-names.js +1 -9
- package/internals/object-is-extensible.js +1 -1
- package/internals/object-property-is-enumerable.js +1 -13
- package/internals/object-set-prototype-of-simple.js +8 -0
- package/internals/object-set-prototype-of.js +2 -2
- package/internals/object-to-array.js +6 -20
- package/internals/own-keys.js +2 -2
- package/internals/parse-json-string.js +6 -7
- package/internals/promise-constructor-detection.js +4 -4
- package/internals/proxy-accessor.js +1 -1
- package/internals/queue.js +1 -1
- package/internals/regexp-exec-abstract.js +1 -0
- package/internals/regexp-exec.js +3 -23
- package/internals/regexp-flags-detection.js +6 -6
- package/internals/regexp-sticky-helpers.js +2 -2
- package/internals/regexp-unsupported-dot-all.js +3 -5
- package/internals/regexp-unsupported-ncg.js +3 -5
- package/internals/safe-get-built-in.js +1 -6
- package/internals/set-helpers.js +3 -4
- package/internals/set-method-accept-set-like.js +3 -3
- package/internals/set-method-get-keys-before-cloning-detection.js +2 -4
- package/internals/set-size.js +1 -3
- package/internals/set-species.js +4 -5
- package/internals/set-to-string-tag.js +1 -0
- package/internals/shared-store.js +3 -3
- package/internals/shared.js +1 -1
- package/internals/string-cooked.js +2 -2
- package/internals/string-multibyte.js +2 -5
- package/internals/string-pad.js +4 -3
- package/internals/string-parse.js +6 -6
- package/internals/string-punycode-to-ascii.js +11 -17
- package/internals/string-trim.js +1 -1
- package/internals/symbol-constructor-detection.js +3 -5
- package/internals/symbol-registry-detection.js +1 -1
- package/internals/task.js +41 -54
- package/internals/typed-array-constructor.js +37 -211
- package/internals/typed-array-constructors-require-wrappers.js +9 -12
- package/internals/typed-array-constructors.js +14 -0
- package/internals/typed-array-core.js +66 -0
- package/internals/typed-array-from-same-type-and-list.js +1 -1
- package/internals/typed-array-from.js +2 -1
- package/internals/uint8-from-base64.js +23 -27
- package/internals/url-constructor-detection.js +4 -5
- package/internals/weak-collections-unfreezing-bug.js +9 -0
- package/internals/weak-map-helpers.js +2 -3
- package/internals/weak-map-native.js +12 -0
- package/internals/weak-set-helpers.js +2 -1
- package/internals/well-known-symbol-define.js +1 -1
- package/internals/well-known-symbol.js +1 -1
- package/internals/wrap-error-constructor-with-cause.js +6 -7
- package/modules/es.aggregate-error.cause.js +4 -1
- package/modules/es.aggregate-error.constructor.js +10 -18
- package/modules/es.array-buffer.constructor.js +42 -7
- package/modules/es.array-buffer.detached.js +3 -3
- package/modules/es.array-buffer.is-view.js +10 -5
- package/modules/es.array-buffer.slice.js +9 -10
- package/modules/es.array-buffer.species.js +6 -0
- package/modules/es.array-buffer.to-string-tag.js +6 -0
- package/modules/es.array-buffer.transfer-to-fixed-length.js +2 -1
- package/modules/es.array-buffer.transfer.js +2 -1
- package/modules/es.array.at.js +2 -1
- package/modules/es.array.concat.js +2 -2
- package/modules/es.array.copy-within.js +1 -1
- package/modules/es.array.entries.js +19 -0
- package/modules/es.array.fill.js +1 -1
- package/modules/es.array.filter.js +1 -1
- package/modules/es.array.find-index.js +2 -2
- package/modules/es.array.find-last-index.js +2 -1
- package/modules/es.array.find-last.js +2 -1
- package/modules/es.array.find.js +2 -2
- package/modules/es.array.flat-map.js +3 -1
- package/modules/es.array.flat.js +3 -1
- package/modules/es.array.from-async.js +50 -2
- package/modules/es.array.from.js +53 -5
- package/modules/es.array.includes.js +3 -2
- package/modules/es.array.index-of.js +10 -13
- package/modules/es.array.iterator.js +5 -57
- package/modules/es.array.join.js +4 -8
- package/modules/es.array.keys.js +19 -0
- package/modules/es.array.last-index-of.js +14 -4
- package/modules/es.array.map.js +1 -1
- package/modules/es.array.of.js +1 -1
- package/modules/es.array.push.js +1 -2
- package/modules/es.array.reduce-right.js +1 -1
- package/modules/es.array.reduce.js +1 -1
- package/modules/es.array.reverse.js +2 -2
- package/modules/es.array.slice.js +4 -4
- package/modules/es.array.sort.js +11 -15
- package/modules/es.array.splice.js +1 -1
- package/modules/es.array.to-reversed.js +4 -3
- package/modules/es.array.to-sorted.js +5 -3
- package/modules/es.array.to-spliced.js +4 -3
- package/modules/es.array.unshift.js +2 -6
- package/modules/es.array.values.js +23 -0
- package/modules/es.array.with.js +6 -5
- package/modules/es.async-disposable-stack.constructor.js +16 -15
- package/modules/es.async-iterator.async-dispose.js +5 -0
- package/modules/es.data-view.constructor.js +41 -6
- package/modules/es.data-view.get-float16.js +2 -2
- package/modules/es.data-view.set-float16.js +5 -4
- package/modules/es.data-view.set-int8.js +16 -0
- package/modules/es.data-view.set-uint8.js +16 -0
- package/modules/es.data-view.to-string-tag.js +6 -0
- package/modules/es.date.to-json.js +4 -2
- package/modules/es.disposable-stack.constructor.js +12 -15
- package/modules/es.error.cause.js +1 -0
- package/modules/es.error.is-error.js +3 -2
- package/modules/es.function.has-instance.js +1 -2
- package/modules/es.function.name.js +6 -17
- package/modules/es.global-this.js +1 -1
- package/modules/es.iterator.concat.js +5 -3
- package/modules/es.iterator.constructor.js +20 -19
- package/modules/es.iterator.dispose.js +2 -1
- package/modules/es.iterator.drop.js +4 -2
- package/modules/es.iterator.every.js +5 -5
- package/modules/es.iterator.filter.js +4 -2
- package/modules/es.iterator.find.js +5 -5
- package/modules/es.iterator.flat-map.js +6 -4
- package/modules/es.iterator.for-each.js +5 -5
- package/modules/es.iterator.from.js +5 -3
- package/modules/es.iterator.map.js +4 -2
- package/modules/es.iterator.reduce.js +5 -5
- package/modules/es.iterator.some.js +5 -5
- package/modules/es.iterator.take.js +4 -2
- package/modules/es.iterator.to-array.js +5 -4
- package/modules/es.json.is-raw-json.js +2 -1
- package/modules/es.json.parse.js +40 -46
- package/modules/es.json.raw-json.js +7 -10
- package/modules/es.json.stringify.js +11 -11
- package/modules/es.json.to-string-tag.js +2 -2
- package/modules/es.map.get-or-insert-computed.js +2 -1
- package/modules/es.map.get-or-insert.js +2 -1
- package/modules/es.map.group-by.js +5 -1
- package/modules/es.map.species.js +6 -0
- package/modules/es.math.acosh.js +1 -1
- package/modules/es.math.asinh.js +1 -1
- package/modules/es.math.atanh.js +1 -1
- package/modules/es.math.cbrt.js +1 -1
- package/modules/es.math.clz32.js +1 -1
- package/modules/es.math.cosh.js +1 -1
- package/modules/es.math.f16round.js +18 -3
- package/modules/es.math.fround.js +9 -2
- package/modules/es.math.hypot.js +1 -1
- package/modules/es.math.imul.js +1 -1
- package/modules/es.math.log10.js +1 -1
- package/modules/es.math.log2.js +6 -2
- package/modules/es.math.sign.js +1 -1
- package/modules/es.math.sinh.js +1 -1
- package/modules/es.math.sum-precise.js +2 -1
- package/modules/es.math.tanh.js +1 -1
- package/modules/es.math.trunc.js +1 -1
- package/modules/es.number.constructor.js +6 -28
- package/modules/es.number.epsilon.js +1 -1
- package/modules/es.number.is-integer.js +1 -1
- package/modules/es.number.is-nan.js +1 -1
- package/modules/es.number.is-safe-integer.js +1 -1
- package/modules/es.number.max-safe-integer.js +1 -1
- package/modules/es.number.min-safe-integer.js +1 -1
- package/modules/es.number.parse-float.js +5 -2
- package/modules/es.number.parse-int.js +5 -2
- package/modules/es.number.to-exponential.js +5 -13
- package/modules/es.number.to-fixed.js +4 -6
- package/modules/es.object.assign.js +54 -4
- package/modules/es.object.define-getter.js +6 -8
- package/modules/es.object.define-setter.js +6 -8
- package/modules/es.object.entries.js +2 -1
- package/modules/es.object.freeze.js +3 -6
- package/modules/es.object.from-entries.js +3 -1
- package/modules/es.object.get-own-property-descriptor.js +6 -7
- package/modules/es.object.get-own-property-descriptors.js +5 -5
- package/modules/es.object.get-own-property-names.js +1 -2
- package/modules/es.object.get-own-property-symbols.js +1 -1
- package/modules/es.object.get-prototype-of.js +4 -4
- package/modules/es.object.group-by.js +6 -3
- package/modules/es.object.has-own.js +2 -1
- package/modules/es.object.is-extensible.js +1 -1
- package/modules/es.object.is-frozen.js +2 -2
- package/modules/es.object.is-sealed.js +2 -2
- package/modules/es.object.is.js +1 -1
- package/modules/es.object.keys.js +5 -4
- package/modules/es.object.lookup-getter.js +14 -15
- package/modules/es.object.lookup-setter.js +14 -15
- package/modules/es.object.prevent-extensions.js +3 -6
- package/modules/es.object.proto.js +3 -4
- package/modules/es.object.seal.js +3 -6
- package/modules/es.object.set-prototype-of.js +1 -1
- package/modules/es.object.to-string.js +4 -4
- package/modules/es.object.values.js +2 -1
- package/modules/es.parse-float.js +18 -3
- package/modules/es.parse-int.js +20 -3
- package/modules/es.promise.all-settled.js +9 -1
- package/modules/es.promise.all.js +8 -1
- package/modules/es.promise.any.js +10 -1
- package/modules/es.promise.catch.js +5 -4
- package/modules/es.promise.constructor.js +10 -12
- package/modules/es.promise.finally.js +7 -5
- package/modules/es.promise.race.js +8 -1
- package/modules/es.promise.reject.js +4 -1
- package/modules/es.promise.resolve.js +4 -1
- package/modules/es.promise.try.js +10 -6
- package/modules/es.promise.with-resolvers.js +6 -2
- package/modules/es.reflect.apply.js +1 -1
- package/modules/es.reflect.construct.js +5 -5
- package/modules/es.reflect.define-property.js +2 -3
- package/modules/es.reflect.delete-property.js +3 -2
- package/modules/es.reflect.get-own-property-descriptor.js +2 -3
- package/modules/es.reflect.get-prototype-of.js +4 -4
- package/modules/es.reflect.get.js +5 -4
- package/modules/es.reflect.has.js +1 -1
- package/modules/es.reflect.is-extensible.js +2 -3
- package/modules/es.reflect.own-keys.js +1 -1
- package/modules/es.reflect.prevent-extensions.js +4 -6
- package/modules/es.reflect.set-prototype-of.js +2 -2
- package/modules/es.reflect.set.js +3 -2
- package/modules/es.regexp.constructor.js +38 -35
- package/modules/es.regexp.dot-all.js +3 -3
- package/modules/es.regexp.escape.js +22 -20
- package/modules/es.regexp.exec.js +3 -1
- package/modules/es.regexp.flags.js +3 -3
- package/modules/es.regexp.sticky.js +2 -3
- package/modules/es.regexp.test.js +2 -3
- package/modules/es.set.difference.js +57 -0
- package/modules/es.set.intersection.js +44 -0
- package/modules/es.set.is-disjoint-from.js +31 -0
- package/modules/es.set.is-subset-of.js +25 -0
- package/modules/es.set.is-superset-of.js +28 -0
- package/modules/es.set.species.js +6 -0
- package/modules/es.set.symmetric-difference.js +31 -0
- package/modules/es.set.union.js +26 -0
- package/modules/es.string.anchor.js +1 -1
- package/modules/es.string.at.js +24 -0
- package/modules/es.string.big.js +1 -1
- package/modules/es.string.blink.js +1 -1
- package/modules/es.string.bold.js +1 -1
- package/modules/es.string.code-point-at.js +1 -1
- package/modules/es.string.ends-with.js +2 -3
- package/modules/es.string.fixed.js +1 -1
- package/modules/es.string.fontcolor.js +1 -1
- package/modules/es.string.fontsize.js +1 -1
- package/modules/es.string.from-code-point.js +1 -1
- package/modules/es.string.includes.js +1 -1
- package/modules/es.string.is-well-formed.js +2 -1
- package/modules/es.string.italics.js +1 -1
- package/modules/es.string.iterator.js +17 -10
- package/modules/es.string.link.js +1 -1
- package/modules/es.string.match-all.js +6 -5
- package/modules/es.string.match.js +1 -1
- package/modules/es.string.pad-end.js +2 -1
- package/modules/es.string.pad-start.js +2 -1
- package/modules/es.string.raw.js +2 -3
- package/modules/es.string.repeat.js +14 -2
- package/modules/es.string.replace-all.js +3 -1
- package/modules/es.string.replace.js +1 -1
- package/modules/es.string.search.js +1 -1
- package/modules/es.string.small.js +1 -1
- package/modules/es.string.split.js +1 -1
- package/modules/es.string.starts-with.js +2 -3
- package/modules/es.string.strike.js +1 -1
- package/modules/es.string.sub.js +1 -1
- package/modules/es.string.sup.js +1 -1
- package/modules/es.string.to-well-formed.js +5 -5
- package/modules/es.string.trim-end.js +2 -3
- package/modules/es.string.trim-left.js +2 -1
- package/modules/es.string.trim-right.js +2 -1
- package/modules/es.string.trim-start.js +2 -3
- package/modules/es.string.trim.js +1 -1
- package/modules/es.suppressed-error.constructor.js +10 -20
- package/modules/es.symbol.async-dispose.js +3 -4
- package/modules/es.symbol.async-iterator.js +1 -0
- package/modules/es.symbol.constructor.js +56 -71
- package/modules/es.symbol.description.js +9 -10
- package/modules/es.symbol.dispose.js +3 -4
- package/modules/es.symbol.for.js +8 -5
- package/modules/es.symbol.key-for.js +2 -2
- package/modules/es.symbol.match-all.js +1 -0
- package/modules/es.typed-array.at.js +3 -4
- package/modules/es.typed-array.copy-within.js +5 -6
- package/modules/es.typed-array.entries.js +19 -0
- package/modules/es.typed-array.every.js +4 -4
- package/modules/es.typed-array.fill.js +2 -4
- package/modules/es.typed-array.filter.js +2 -4
- package/modules/es.typed-array.find-index.js +2 -4
- package/modules/es.typed-array.find-last-index.js +3 -4
- package/modules/es.typed-array.find-last.js +3 -4
- package/modules/es.typed-array.find.js +2 -4
- package/modules/es.typed-array.for-each.js +4 -4
- package/modules/es.typed-array.from.js +3 -3
- package/modules/es.typed-array.includes.js +4 -5
- package/modules/es.typed-array.index-of.js +7 -5
- package/modules/es.typed-array.iterator.js +13 -34
- package/modules/es.typed-array.join.js +2 -3
- package/modules/es.typed-array.keys.js +19 -0
- package/modules/es.typed-array.last-index-of.js +7 -7
- package/modules/es.typed-array.map.js +3 -5
- package/modules/es.typed-array.of.js +5 -7
- package/modules/es.typed-array.reduce-right.js +2 -4
- package/modules/es.typed-array.reduce.js +2 -4
- package/modules/es.typed-array.reverse.js +2 -3
- package/modules/es.typed-array.set.js +10 -14
- package/modules/es.typed-array.slice.js +3 -6
- package/modules/es.typed-array.some.js +4 -4
- package/modules/es.typed-array.sort.js +7 -9
- package/modules/es.typed-array.species.js +7 -0
- package/modules/es.typed-array.subarray.js +8 -5
- package/modules/es.typed-array.to-locale-string.js +7 -17
- package/modules/es.typed-array.to-reversed.js +4 -5
- package/modules/es.typed-array.to-sorted.js +5 -5
- package/modules/es.typed-array.to-string-tag.js +19 -0
- package/modules/es.typed-array.to-string.js +2 -5
- package/modules/es.typed-array.values.js +14 -0
- package/modules/es.typed-array.with.js +10 -11
- package/modules/es.uint8-array.from-base64.js +10 -8
- package/modules/es.uint8-array.from-hex.js +3 -3
- package/modules/es.uint8-array.set-from-base64.js +5 -6
- package/modules/es.uint8-array.set-from-hex.js +4 -4
- package/modules/es.uint8-array.to-base64.js +6 -10
- package/modules/es.uint8-array.to-hex.js +5 -6
- package/modules/es.weak-map.constructor.js +5 -100
- package/modules/es.weak-map.get-or-insert-computed.js +3 -2
- package/modules/es.weak-map.get-or-insert.js +2 -1
- package/modules/es.weak-set.constructor.js +3 -1
- package/modules/esnext.array.filter-reject.js +2 -1
- package/modules/esnext.array.is-template-object.js +4 -3
- package/modules/esnext.array.unique-by.js +2 -1
- package/modules/esnext.async-iterator.constructor.js +4 -2
- package/modules/esnext.async-iterator.drop.js +4 -2
- package/modules/esnext.async-iterator.every.js +3 -1
- package/modules/esnext.async-iterator.filter.js +4 -2
- package/modules/esnext.async-iterator.find.js +3 -1
- package/modules/esnext.async-iterator.flat-map.js +4 -2
- package/modules/esnext.async-iterator.for-each.js +3 -1
- package/modules/esnext.async-iterator.from.js +3 -1
- package/modules/esnext.async-iterator.map.js +57 -3
- package/modules/esnext.async-iterator.reduce.js +7 -1
- package/modules/esnext.async-iterator.some.js +3 -1
- package/modules/esnext.async-iterator.take.js +4 -2
- package/modules/esnext.async-iterator.to-array.js +3 -1
- package/modules/esnext.data-view.get-uint8-clamped.js +2 -2
- package/modules/esnext.data-view.set-uint8-clamped.js +17 -8
- package/modules/esnext.function.demethodize.js +6 -2
- package/modules/esnext.function.metadata.js +3 -3
- package/modules/esnext.iterator.chunks.js +5 -3
- package/modules/esnext.iterator.includes.js +43 -0
- package/modules/esnext.iterator.join.js +32 -0
- package/modules/esnext.iterator.range.js +100 -4
- package/modules/esnext.iterator.to-async.js +3 -1
- package/modules/esnext.iterator.windows.js +48 -3
- package/modules/esnext.iterator.zip-keyed.js +7 -4
- package/modules/esnext.iterator.zip.js +3 -1
- package/modules/esnext.map.from.js +3 -1
- package/modules/esnext.map.of.js +3 -1
- package/modules/esnext.number.clamp.js +7 -3
- package/modules/esnext.object.keys-length.js +14 -0
- package/modules/esnext.promise.all-keyed.js +67 -0
- package/modules/esnext.promise.all-settled-keyed.js +70 -0
- package/modules/esnext.set.from.js +3 -1
- package/modules/esnext.set.of.js +3 -1
- package/modules/esnext.string.cooked.js +2 -1
- package/modules/esnext.string.dedent.js +9 -12
- package/modules/esnext.symbol.custom-matcher.js +1 -0
- package/modules/esnext.symbol.is-registered-symbol.js +16 -2
- package/modules/esnext.symbol.is-well-known-symbol.js +32 -2
- package/modules/esnext.symbol.metadata.js +1 -0
- package/modules/esnext.typed-array.filter-reject.js +3 -4
- package/modules/esnext.typed-array.unique-by.js +4 -4
- package/modules/esnext.weak-map.from.js +3 -1
- package/modules/esnext.weak-map.of.js +3 -1
- package/modules/esnext.weak-set.from.js +3 -1
- package/modules/esnext.weak-set.of.js +3 -1
- package/modules/web.atob.js +10 -6
- package/modules/web.btoa.js +7 -2
- package/modules/web.clear-immediate.js +2 -1
- package/modules/web.dom-collections.entries.js +7 -0
- package/modules/web.dom-collections.for-each.js +3 -21
- package/modules/web.dom-collections.iterator.js +4 -33
- package/modules/web.dom-collections.keys.js +7 -0
- package/modules/web.dom-collections.values.js +8 -0
- package/modules/web.dom-exception.constructor.js +22 -32
- package/modules/web.dom-exception.stack.js +11 -11
- package/modules/web.dom-exception.to-string-tag.js +1 -0
- package/modules/web.queue-microtask.js +3 -4
- package/modules/web.self.js +22 -29
- package/modules/web.set-immediate.js +24 -4
- package/modules/web.structured-clone.js +39 -32
- package/modules/web.url-search-params.constructor.js +32 -39
- package/modules/web.url-search-params.delete.js +5 -3
- package/modules/web.url-search-params.has.js +2 -0
- package/modules/web.url-search-params.size.js +4 -3
- package/modules/web.url.can-parse.js +3 -1
- package/modules/web.url.constructor.js +152 -171
- package/modules/web.url.parse.js +3 -1
- package/modules/web.url.to-json.js +7 -3
- package/package.json +781 -4
- package/proposals/accessible-object-hasownproperty.js +2 -1
- package/proposals/array-buffer-base64.js +7 -6
- package/proposals/array-buffer-transfer.js +5 -3
- package/proposals/array-filtering.js +1 -4
- package/proposals/array-find-from-last.js +6 -5
- package/proposals/array-flat-map.js +1 -0
- package/proposals/array-from-async.js +10 -3
- package/proposals/array-grouping.js +8 -4
- package/proposals/array-includes.js +1 -0
- package/proposals/array-is-template-object.js +1 -0
- package/proposals/array-unique.js +6 -1
- package/proposals/async-iteration.js +1 -0
- package/proposals/async-iterator-helpers.js +11 -0
- package/proposals/change-array-by-copy.js +9 -9
- package/proposals/collection-of-from.js +9 -0
- package/proposals/data-view-get-set-uint8-clamped.js +1 -0
- package/proposals/decorator-metadata.js +3 -2
- package/proposals/error-cause.js +6 -0
- package/proposals/explicit-resource-management.js +13 -7
- package/proposals/extractors.js +1 -0
- package/proposals/float16.js +5 -3
- package/proposals/function-demethodize.js +1 -0
- package/proposals/global-this.js +2 -4
- package/proposals/is-error.js +2 -1
- package/proposals/iterator-chunking.js +3 -1
- package/proposals/iterator-helpers.js +18 -6
- package/proposals/iterator-includes.js +9 -0
- package/proposals/iterator-join.js +9 -0
- package/proposals/iterator-range.js +3 -1
- package/proposals/iterator-sequencing.js +7 -1
- package/proposals/joint-iteration.js +7 -0
- package/proposals/json-parse-with-source.js +6 -3
- package/proposals/map-upsert.js +11 -8
- package/proposals/math-clamp.js +2 -1
- package/proposals/math-sum.js +6 -1
- package/proposals/object-from-entries.js +5 -0
- package/proposals/object-getownpropertydescriptors.js +1 -0
- package/proposals/object-keys-length.js +4 -0
- package/proposals/object-values-entries.js +1 -0
- package/proposals/pattern-matching.js +2 -3
- package/proposals/promise-all-keyed.js +11 -0
- package/proposals/promise-all-settled.js +10 -1
- package/proposals/promise-any.js +11 -2
- package/proposals/promise-finally.js +3 -0
- package/proposals/promise-try.js +6 -1
- package/proposals/promise-with-resolvers.js +6 -1
- package/proposals/regexp-dotall-flag.js +1 -0
- package/proposals/regexp-escaping.js +4 -1
- package/proposals/regexp-named-groups.js +1 -0
- package/proposals/relative-indexing-method.js +4 -3
- package/proposals/set-methods.js +13 -15
- package/proposals/string-cooked.js +1 -0
- package/proposals/string-dedent.js +7 -0
- package/proposals/string-left-right-trim.js +4 -1
- package/proposals/string-match-all.js +4 -1
- package/proposals/string-padding.js +2 -0
- package/proposals/string-replace-all.js +4 -3
- package/proposals/symbol-description.js +1 -0
- package/proposals/symbol-predicates.js +6 -2
- package/proposals/well-formed-stringify.js +2 -0
- package/proposals/well-formed-unicode-strings.js +3 -2
- package/stable/aggregate-error/constructor.js +11 -0
- package/stable/aggregate-error/index.js +12 -0
- package/stable/aggregate-error/is-error.js +6 -0
- package/stable/array/at.js +4 -2
- package/stable/array/concat.js +4 -2
- package/stable/array/copy-within.js +4 -2
- package/stable/array/entries.js +5 -2
- package/stable/array/fill.js +4 -2
- package/stable/array/filter.js +4 -2
- package/stable/array/find-index.js +4 -2
- package/stable/array/find-last-index.js +5 -1
- package/stable/array/find-last.js +5 -1
- package/stable/array/find.js +4 -2
- package/stable/array/flat-map.js +5 -2
- package/stable/array/flat.js +5 -2
- package/stable/array/from-async.js +12 -2
- package/stable/array/from.js +8 -2
- package/stable/array/includes.js +4 -2
- package/stable/array/index-of.js +4 -2
- package/stable/array/index.js +48 -2
- package/stable/array/instance/at.js +11 -0
- package/stable/array/instance/concat.js +11 -0
- package/stable/array/instance/copy-within.js +11 -0
- package/stable/array/instance/entries.js +11 -0
- package/stable/array/instance/fill.js +11 -0
- package/stable/array/instance/filter.js +11 -0
- package/stable/array/instance/find-index.js +11 -0
- package/stable/array/instance/find-last-index.js +11 -0
- package/stable/array/instance/find-last.js +11 -0
- package/stable/array/instance/find.js +11 -0
- package/stable/array/instance/flat-map.js +11 -0
- package/stable/array/instance/flat.js +11 -0
- package/stable/array/instance/includes.js +11 -0
- package/stable/array/instance/index-of.js +11 -0
- package/stable/array/instance/join.js +11 -0
- package/stable/array/instance/keys.js +11 -0
- package/stable/array/instance/last-index-of.js +11 -0
- package/stable/array/instance/map.js +11 -0
- package/stable/array/instance/push.js +11 -0
- package/stable/array/instance/reduce-right.js +11 -0
- package/stable/array/instance/reduce.js +11 -0
- package/stable/array/instance/reverse.js +11 -0
- package/stable/array/instance/slice.js +11 -0
- package/stable/array/instance/sort.js +11 -0
- package/stable/array/instance/splice.js +11 -0
- package/stable/array/instance/to-reversed.js +11 -0
- package/stable/array/instance/to-sorted.js +11 -0
- package/stable/array/instance/to-spliced.js +11 -0
- package/stable/array/instance/unshift.js +11 -0
- package/stable/array/instance/values.js +11 -0
- package/stable/array/instance/with.js +11 -0
- package/stable/array/iterator.js +6 -2
- package/stable/array/join.js +4 -2
- package/stable/array/keys.js +5 -2
- package/stable/array/last-index-of.js +4 -2
- package/stable/array/map.js +4 -2
- package/stable/array/of.js +4 -2
- package/stable/array/prototype/at.js +6 -0
- package/stable/array/prototype/concat.js +6 -0
- package/stable/array/prototype/copy-within.js +6 -0
- package/stable/array/prototype/entries.js +7 -0
- package/stable/array/prototype/fill.js +6 -0
- package/stable/array/prototype/filter.js +6 -0
- package/stable/array/prototype/find-index.js +6 -0
- package/stable/array/prototype/find-last-index.js +6 -0
- package/stable/array/prototype/find-last.js +6 -0
- package/stable/array/prototype/find.js +6 -0
- package/stable/array/prototype/flat-map.js +7 -0
- package/stable/array/prototype/flat.js +7 -0
- package/stable/array/prototype/includes.js +6 -0
- package/stable/array/prototype/index-of.js +6 -0
- package/stable/array/prototype/iterator.js +7 -0
- package/stable/array/prototype/join.js +6 -0
- package/stable/array/prototype/keys.js +7 -0
- package/stable/array/prototype/last-index-of.js +6 -0
- package/stable/array/prototype/map.js +6 -0
- package/stable/array/prototype/push.js +6 -0
- package/stable/array/prototype/reduce-right.js +6 -0
- package/stable/array/prototype/reduce.js +6 -0
- package/stable/array/prototype/reverse.js +6 -0
- package/stable/array/prototype/slice.js +6 -0
- package/stable/array/prototype/sort.js +6 -0
- package/stable/array/prototype/splice.js +6 -0
- package/stable/array/prototype/to-reversed.js +6 -0
- package/stable/array/prototype/to-sorted.js +7 -0
- package/stable/array/prototype/to-spliced.js +6 -0
- package/stable/array/prototype/unshift.js +6 -0
- package/stable/array/prototype/values.js +10 -0
- package/stable/array/prototype/with.js +6 -0
- package/stable/array/push.js +4 -2
- package/stable/array/reduce-right.js +4 -2
- package/stable/array/reduce.js +4 -2
- package/stable/array/reverse.js +4 -2
- package/stable/array/slice.js +4 -2
- package/stable/array/sort.js +4 -2
- package/stable/array/splice.js +4 -2
- package/stable/array/to-reversed.js +4 -2
- package/stable/array/to-sorted.js +5 -2
- package/stable/array/to-spliced.js +4 -2
- package/stable/array/unshift.js +4 -2
- package/stable/array/values.js +8 -2
- package/stable/array/with.js +4 -2
- package/stable/array-buffer/constructor.js +11 -2
- package/stable/array-buffer/detached.js +1 -3
- package/stable/array-buffer/index.js +12 -2
- package/stable/array-buffer/is-view.js +4 -2
- package/stable/array-buffer/slice.js +1 -3
- package/stable/array-buffer/transfer-to-fixed-length.js +2 -3
- package/stable/array-buffer/transfer.js +2 -3
- package/stable/async-disposable-stack/constructor.js +12 -2
- package/stable/async-disposable-stack/index.js +12 -2
- package/stable/async-iterator/index.js +10 -1
- package/stable/atob.js +2 -2
- package/stable/btoa.js +2 -2
- package/stable/clear-immediate.js +2 -1
- package/stable/data-view/constructor.js +13 -0
- package/stable/data-view/get-float16.js +1 -3
- package/stable/data-view/index.js +11 -2
- package/stable/data-view/set-float16.js +2 -3
- package/stable/date/index.js +5 -2
- package/stable/date/prototype/to-json.js +6 -0
- package/stable/date/to-json.js +4 -2
- package/stable/disposable-stack/constructor.js +7 -2
- package/stable/disposable-stack/index.js +7 -2
- package/stable/dom-collections/entries.js +4 -0
- package/stable/dom-collections/for-each.js +0 -4
- package/stable/dom-collections/index.js +7 -11
- package/stable/dom-collections/instance/entries.js +21 -0
- package/stable/dom-collections/instance/for-each.js +19 -0
- package/stable/dom-collections/instance/keys.js +21 -0
- package/stable/dom-collections/instance/values.js +21 -0
- package/stable/dom-collections/iterator.js +1 -3
- package/stable/dom-collections/keys.js +4 -0
- package/stable/dom-collections/prototype/entries.js +8 -0
- package/stable/dom-collections/prototype/for-each.js +6 -0
- package/stable/dom-collections/prototype/keys.js +8 -0
- package/stable/dom-collections/prototype/values.js +8 -0
- package/stable/dom-collections/values.js +4 -0
- package/stable/dom-exception/constructor.js +3 -1
- package/stable/dom-exception/index.js +2 -1
- package/stable/error/constructor.js +4 -2
- package/stable/error/index.js +5 -2
- package/stable/error/is-error.js +4 -2
- package/stable/eval-error/constructor.js +6 -0
- package/stable/eval-error/index.js +7 -0
- package/stable/eval-error/is-error.js +6 -0
- package/stable/float32-array/at.js +2 -0
- package/stable/float32-array/constructor.js +46 -0
- package/stable/float32-array/copy-within.js +2 -0
- package/stable/float32-array/entries.js +4 -0
- package/stable/float32-array/every.js +2 -0
- package/stable/float32-array/fill.js +2 -0
- package/stable/float32-array/filter.js +2 -0
- package/stable/float32-array/find-index.js +2 -0
- package/stable/float32-array/find-last-index.js +2 -0
- package/stable/float32-array/find-last.js +2 -0
- package/stable/float32-array/find.js +2 -0
- package/stable/float32-array/for-each.js +2 -0
- package/stable/float32-array/from.js +42 -0
- package/stable/float32-array/includes.js +2 -0
- package/stable/float32-array/index-of.js +2 -0
- package/stable/float32-array/index.js +48 -0
- package/stable/float32-array/iterator.js +4 -0
- package/stable/float32-array/join.js +2 -0
- package/stable/float32-array/keys.js +4 -0
- package/stable/float32-array/last-index-of.js +2 -0
- package/stable/float32-array/map.js +2 -0
- package/stable/float32-array/of.js +40 -0
- package/stable/float32-array/reduce-right.js +2 -0
- package/stable/float32-array/reduce.js +2 -0
- package/stable/float32-array/reverse.js +2 -0
- package/stable/float32-array/set.js +2 -0
- package/stable/float32-array/slice.js +2 -0
- package/stable/float32-array/some.js +2 -0
- package/stable/float32-array/sort.js +2 -0
- package/stable/float32-array/subarray.js +2 -0
- package/stable/float32-array/to-locale-string.js +2 -0
- package/stable/float32-array/to-reversed.js +2 -0
- package/stable/float32-array/to-sorted.js +2 -0
- package/stable/float32-array/to-string.js +2 -0
- package/stable/float32-array/values.js +5 -0
- package/stable/float32-array/with.js +2 -0
- package/stable/float64-array/at.js +2 -0
- package/stable/float64-array/constructor.js +46 -0
- package/stable/float64-array/copy-within.js +2 -0
- package/stable/float64-array/entries.js +4 -0
- package/stable/float64-array/every.js +2 -0
- package/stable/float64-array/fill.js +2 -0
- package/stable/float64-array/filter.js +2 -0
- package/stable/float64-array/find-index.js +2 -0
- package/stable/float64-array/find-last-index.js +2 -0
- package/stable/float64-array/find-last.js +2 -0
- package/stable/float64-array/find.js +2 -0
- package/stable/float64-array/for-each.js +2 -0
- package/stable/float64-array/from.js +42 -0
- package/stable/float64-array/includes.js +2 -0
- package/stable/float64-array/index-of.js +2 -0
- package/stable/float64-array/index.js +48 -0
- package/stable/float64-array/iterator.js +4 -0
- package/stable/float64-array/join.js +2 -0
- package/stable/float64-array/keys.js +4 -0
- package/stable/float64-array/last-index-of.js +2 -0
- package/stable/float64-array/map.js +2 -0
- package/stable/float64-array/of.js +40 -0
- package/stable/float64-array/reduce-right.js +2 -0
- package/stable/float64-array/reduce.js +2 -0
- package/stable/float64-array/reverse.js +2 -0
- package/stable/float64-array/set.js +2 -0
- package/stable/float64-array/slice.js +2 -0
- package/stable/float64-array/some.js +2 -0
- package/stable/float64-array/sort.js +2 -0
- package/stable/float64-array/subarray.js +2 -0
- package/stable/float64-array/to-locale-string.js +2 -0
- package/stable/float64-array/to-reversed.js +2 -0
- package/stable/float64-array/to-sorted.js +2 -0
- package/stable/float64-array/to-string.js +2 -0
- package/stable/float64-array/values.js +5 -0
- package/stable/float64-array/with.js +2 -0
- package/stable/function/index.js +5 -2
- package/stable/function/instance/name.js +9 -0
- package/stable/function/name.js +4 -2
- package/stable/get-iterator-method.js +6 -2
- package/stable/get-iterator.js +6 -2
- package/stable/global-this.js +4 -2
- package/stable/index.js +114 -103
- package/stable/instance/at.js +13 -2
- package/stable/instance/code-point-at.js +10 -2
- package/stable/instance/concat.js +9 -2
- package/stable/instance/copy-within.js +9 -2
- package/stable/instance/ends-with.js +10 -2
- package/stable/instance/entries.js +10 -6
- package/stable/instance/fill.js +9 -2
- package/stable/instance/filter.js +9 -2
- package/stable/instance/find-index.js +9 -2
- package/stable/instance/find-last-index.js +9 -2
- package/stable/instance/find-last.js +9 -2
- package/stable/instance/find.js +9 -2
- package/stable/instance/flags.js +9 -2
- package/stable/instance/flat-map.js +9 -2
- package/stable/instance/flat.js +9 -2
- package/stable/instance/for-each.js +8 -8
- package/stable/instance/includes.js +13 -2
- package/stable/instance/index-of.js +9 -2
- package/stable/instance/is-well-formed.js +10 -2
- package/stable/instance/join.js +11 -0
- package/stable/instance/keys.js +10 -6
- package/stable/instance/last-index-of.js +9 -2
- package/stable/instance/map.js +9 -2
- package/stable/instance/match-all.js +10 -2
- package/stable/instance/name.js +9 -0
- package/stable/instance/pad-end.js +10 -2
- package/stable/instance/pad-start.js +10 -2
- package/stable/instance/push.js +9 -2
- package/stable/instance/reduce-right.js +9 -2
- package/stable/instance/reduce.js +9 -2
- package/stable/instance/repeat.js +10 -2
- package/stable/instance/replace-all.js +10 -2
- package/stable/instance/reverse.js +9 -2
- package/stable/instance/slice.js +9 -2
- package/stable/instance/sort.js +9 -2
- package/stable/instance/splice.js +9 -2
- package/stable/instance/starts-with.js +10 -2
- package/stable/instance/to-exponential.js +12 -0
- package/stable/instance/to-fixed.js +12 -0
- package/stable/instance/to-reversed.js +9 -2
- package/stable/instance/to-sorted.js +9 -2
- package/stable/instance/to-spliced.js +9 -2
- package/stable/instance/to-well-formed.js +10 -2
- package/stable/instance/trim-end.js +10 -2
- package/stable/instance/trim-left.js +10 -2
- package/stable/instance/trim-right.js +10 -2
- package/stable/instance/trim-start.js +10 -2
- package/stable/instance/trim.js +10 -2
- package/stable/instance/unshift.js +9 -2
- package/stable/instance/values.js +12 -5
- package/stable/instance/with.js +9 -2
- package/stable/int16-array/at.js +2 -0
- package/stable/int16-array/constructor.js +46 -0
- package/stable/int16-array/copy-within.js +2 -0
- package/stable/int16-array/entries.js +4 -0
- package/stable/int16-array/every.js +2 -0
- package/stable/int16-array/fill.js +2 -0
- package/stable/int16-array/filter.js +2 -0
- package/stable/int16-array/find-index.js +2 -0
- package/stable/int16-array/find-last-index.js +2 -0
- package/stable/int16-array/find-last.js +2 -0
- package/stable/int16-array/find.js +2 -0
- package/stable/int16-array/for-each.js +2 -0
- package/stable/int16-array/from.js +42 -0
- package/stable/int16-array/includes.js +2 -0
- package/stable/int16-array/index-of.js +2 -0
- package/stable/int16-array/index.js +48 -0
- package/stable/int16-array/iterator.js +4 -0
- package/stable/int16-array/join.js +2 -0
- package/stable/int16-array/keys.js +4 -0
- package/stable/int16-array/last-index-of.js +2 -0
- package/stable/int16-array/map.js +2 -0
- package/stable/int16-array/of.js +40 -0
- package/stable/int16-array/reduce-right.js +2 -0
- package/stable/int16-array/reduce.js +2 -0
- package/stable/int16-array/reverse.js +2 -0
- package/stable/int16-array/set.js +2 -0
- package/stable/int16-array/slice.js +2 -0
- package/stable/int16-array/some.js +2 -0
- package/stable/int16-array/sort.js +2 -0
- package/stable/int16-array/subarray.js +2 -0
- package/stable/int16-array/to-locale-string.js +2 -0
- package/stable/int16-array/to-reversed.js +2 -0
- package/stable/int16-array/to-sorted.js +2 -0
- package/stable/int16-array/to-string.js +2 -0
- package/stable/int16-array/values.js +5 -0
- package/stable/int16-array/with.js +2 -0
- package/stable/int32-array/at.js +2 -0
- package/stable/int32-array/constructor.js +46 -0
- package/stable/int32-array/copy-within.js +2 -0
- package/stable/int32-array/entries.js +4 -0
- package/stable/int32-array/every.js +2 -0
- package/stable/int32-array/fill.js +2 -0
- package/stable/int32-array/filter.js +2 -0
- package/stable/int32-array/find-index.js +2 -0
- package/stable/int32-array/find-last-index.js +2 -0
- package/stable/int32-array/find-last.js +2 -0
- package/stable/int32-array/find.js +2 -0
- package/stable/int32-array/for-each.js +2 -0
- package/stable/int32-array/from.js +42 -0
- package/stable/int32-array/includes.js +2 -0
- package/stable/int32-array/index-of.js +2 -0
- package/stable/int32-array/index.js +48 -0
- package/stable/int32-array/iterator.js +4 -0
- package/stable/int32-array/join.js +2 -0
- package/stable/int32-array/keys.js +4 -0
- package/stable/int32-array/last-index-of.js +2 -0
- package/stable/int32-array/map.js +2 -0
- package/stable/int32-array/of.js +40 -0
- package/stable/int32-array/reduce-right.js +2 -0
- package/stable/int32-array/reduce.js +2 -0
- package/stable/int32-array/reverse.js +2 -0
- package/stable/int32-array/set.js +2 -0
- package/stable/int32-array/slice.js +2 -0
- package/stable/int32-array/some.js +2 -0
- package/stable/int32-array/sort.js +2 -0
- package/stable/int32-array/subarray.js +2 -0
- package/stable/int32-array/to-locale-string.js +2 -0
- package/stable/int32-array/to-reversed.js +2 -0
- package/stable/int32-array/to-sorted.js +2 -0
- package/stable/int32-array/to-string.js +2 -0
- package/stable/int32-array/values.js +5 -0
- package/stable/int32-array/with.js +2 -0
- package/stable/int8-array/at.js +2 -0
- package/stable/int8-array/constructor.js +46 -0
- package/stable/int8-array/copy-within.js +2 -0
- package/stable/int8-array/entries.js +4 -0
- package/stable/int8-array/every.js +2 -0
- package/stable/int8-array/fill.js +2 -0
- package/stable/int8-array/filter.js +2 -0
- package/stable/int8-array/find-index.js +2 -0
- package/stable/int8-array/find-last-index.js +2 -0
- package/stable/int8-array/find-last.js +2 -0
- package/stable/int8-array/find.js +2 -0
- package/stable/int8-array/for-each.js +2 -0
- package/stable/int8-array/from.js +42 -0
- package/stable/int8-array/includes.js +2 -0
- package/stable/int8-array/index-of.js +2 -0
- package/stable/int8-array/index.js +48 -0
- package/stable/int8-array/iterator.js +4 -0
- package/stable/int8-array/join.js +2 -0
- package/stable/int8-array/keys.js +4 -0
- package/stable/int8-array/last-index-of.js +2 -0
- package/stable/int8-array/map.js +2 -0
- package/stable/int8-array/of.js +40 -0
- package/stable/int8-array/reduce-right.js +2 -0
- package/stable/int8-array/reduce.js +2 -0
- package/stable/int8-array/reverse.js +2 -0
- package/stable/int8-array/set.js +2 -0
- package/stable/int8-array/slice.js +2 -0
- package/stable/int8-array/some.js +2 -0
- package/stable/int8-array/sort.js +2 -0
- package/stable/int8-array/subarray.js +2 -0
- package/stable/int8-array/to-locale-string.js +2 -0
- package/stable/int8-array/to-reversed.js +2 -0
- package/stable/int8-array/to-sorted.js +2 -0
- package/stable/int8-array/to-string.js +2 -0
- package/stable/int8-array/values.js +5 -0
- package/stable/int8-array/with.js +2 -0
- package/stable/is-iterable.js +6 -2
- package/stable/iterator/concat.js +21 -3
- package/stable/iterator/constructor.js +22 -0
- package/stable/iterator/drop.js +6 -2
- package/stable/iterator/every.js +9 -2
- package/stable/iterator/filter.js +6 -2
- package/stable/iterator/find.js +9 -2
- package/stable/iterator/flat-map.js +8 -2
- package/stable/iterator/for-each.js +9 -2
- package/stable/iterator/from.js +20 -2
- package/stable/iterator/index.js +21 -2
- package/stable/iterator/map.js +6 -2
- package/stable/iterator/prototype/drop.js +8 -0
- package/stable/iterator/prototype/every.js +11 -0
- package/stable/iterator/prototype/filter.js +8 -0
- package/stable/iterator/prototype/find.js +11 -0
- package/stable/iterator/prototype/flat-map.js +11 -0
- package/stable/iterator/prototype/for-each.js +11 -0
- package/stable/iterator/prototype/map.js +8 -0
- package/stable/iterator/prototype/reduce.js +11 -0
- package/stable/iterator/prototype/some.js +11 -0
- package/stable/iterator/prototype/take.js +8 -0
- package/stable/iterator/prototype/to-array.js +11 -0
- package/stable/iterator/reduce.js +9 -2
- package/stable/iterator/some.js +9 -2
- package/stable/iterator/take.js +6 -2
- package/stable/iterator/to-array.js +9 -2
- package/stable/json/index.js +10 -2
- package/stable/json/is-raw-json.js +4 -2
- package/stable/json/parse.js +4 -2
- package/stable/json/raw-json.js +4 -2
- package/stable/json/stringify.js +5 -2
- package/stable/map/constructor.js +13 -0
- package/stable/map/get-or-insert-computed.js +9 -2
- package/stable/map/get-or-insert.js +9 -2
- package/stable/map/group-by.js +12 -2
- package/stable/map/index.js +11 -2
- package/stable/map/prototype/get-or-insert-computed.js +11 -0
- package/stable/map/prototype/get-or-insert.js +11 -0
- package/stable/math/acosh.js +4 -2
- package/stable/math/asinh.js +4 -2
- package/stable/math/atanh.js +4 -2
- package/stable/math/cbrt.js +4 -2
- package/stable/math/clz32.js +4 -2
- package/stable/math/cosh.js +4 -2
- package/stable/math/expm1.js +4 -2
- package/stable/math/f16round.js +4 -2
- package/stable/math/fround.js +4 -2
- package/stable/math/hypot.js +4 -2
- package/stable/math/imul.js +4 -2
- package/stable/math/index.js +27 -2
- package/stable/math/log10.js +4 -2
- package/stable/math/log1p.js +4 -2
- package/stable/math/log2.js +4 -2
- package/stable/math/sign.js +4 -2
- package/stable/math/sinh.js +4 -2
- package/stable/math/sum-precise.js +8 -2
- package/stable/math/tanh.js +4 -2
- package/stable/math/trunc.js +4 -2
- package/stable/number/constructor.js +4 -2
- package/stable/number/epsilon.js +4 -2
- package/stable/number/index.js +18 -2
- package/stable/number/instance/to-exponential.js +12 -0
- package/stable/number/instance/to-fixed.js +12 -0
- package/stable/number/is-finite.js +4 -2
- package/stable/number/is-integer.js +4 -2
- package/stable/number/is-nan.js +4 -2
- package/stable/number/is-safe-integer.js +4 -2
- package/stable/number/max-safe-integer.js +4 -2
- package/stable/number/min-safe-integer.js +4 -2
- package/stable/number/parse-float.js +5 -2
- package/stable/number/parse-int.js +5 -2
- package/stable/number/prototype/to-exponential.js +7 -0
- package/stable/number/prototype/to-fixed.js +7 -0
- package/stable/number/to-exponential.js +5 -2
- package/stable/number/to-fixed.js +5 -2
- package/stable/object/assign.js +4 -2
- package/stable/object/create.js +5 -2
- package/stable/object/define-getter.js +4 -2
- package/stable/object/define-properties.js +5 -2
- package/stable/object/define-property.js +5 -2
- package/stable/object/define-setter.js +4 -2
- package/stable/object/entries.js +4 -2
- package/stable/object/freeze.js +4 -2
- package/stable/object/from-entries.js +7 -2
- package/stable/object/get-own-property-descriptor.js +7 -2
- package/stable/object/get-own-property-descriptors.js +4 -2
- package/stable/object/get-own-property-names.js +7 -2
- package/stable/object/get-own-property-symbols.js +4 -2
- package/stable/object/get-prototype-of.js +4 -2
- package/stable/object/group-by.js +8 -2
- package/stable/object/has-own.js +4 -2
- package/stable/object/index.js +31 -2
- package/stable/object/is-extensible.js +4 -2
- package/stable/object/is-frozen.js +4 -2
- package/stable/object/is-sealed.js +4 -2
- package/stable/object/is.js +4 -2
- package/stable/object/keys.js +4 -2
- package/stable/object/lookup-getter.js +4 -2
- package/stable/object/lookup-setter.js +4 -2
- package/stable/object/prevent-extensions.js +4 -2
- package/stable/object/proto.js +1 -3
- package/stable/object/prototype/define-getter.js +6 -0
- package/stable/object/prototype/define-setter.js +6 -0
- package/stable/object/prototype/lookup-getter.js +6 -0
- package/stable/object/prototype/lookup-setter.js +6 -0
- package/stable/object/prototype/to-string.js +6 -0
- package/stable/object/seal.js +4 -2
- package/stable/object/set-prototype-of.js +4 -2
- package/stable/object/to-string.js +4 -2
- package/stable/object/values.js +4 -2
- package/stable/parse-float.js +4 -2
- package/stable/parse-int.js +4 -2
- package/stable/promise/all-settled.js +18 -2
- package/stable/promise/all.js +21 -0
- package/stable/promise/any.js +19 -2
- package/stable/promise/catch.js +8 -0
- package/stable/promise/constructor.js +9 -0
- package/stable/promise/finally.js +6 -2
- package/stable/promise/index.js +18 -2
- package/stable/promise/prototype/catch.js +8 -0
- package/stable/promise/prototype/finally.js +8 -0
- package/stable/promise/race.js +21 -0
- package/stable/promise/reject.js +17 -0
- package/stable/promise/resolve.js +17 -0
- package/stable/promise/try.js +15 -2
- package/stable/promise/with-resolvers.js +15 -2
- package/stable/queue-microtask.js +4 -2
- package/stable/range-error/constructor.js +6 -0
- package/stable/range-error/index.js +7 -0
- package/stable/range-error/is-error.js +6 -0
- package/stable/reference-error/constructor.js +6 -0
- package/stable/reference-error/index.js +7 -0
- package/stable/reference-error/is-error.js +6 -0
- package/stable/reflect/apply.js +4 -2
- package/stable/reflect/construct.js +4 -2
- package/stable/reflect/define-property.js +4 -2
- package/stable/reflect/delete-property.js +4 -2
- package/stable/reflect/get-own-property-descriptor.js +4 -2
- package/stable/reflect/get-prototype-of.js +4 -2
- package/stable/reflect/get.js +4 -2
- package/stable/reflect/has.js +4 -2
- package/stable/reflect/index.js +18 -2
- package/stable/reflect/is-extensible.js +4 -2
- package/stable/reflect/own-keys.js +4 -2
- package/stable/reflect/prevent-extensions.js +4 -2
- package/stable/reflect/set-prototype-of.js +4 -2
- package/stable/reflect/set.js +4 -2
- package/stable/regexp/constructor.js +4 -3
- package/stable/regexp/dot-all.js +3 -3
- package/stable/regexp/escape.js +6 -2
- package/stable/regexp/exec.js +2 -0
- package/stable/regexp/flags.js +4 -2
- package/stable/regexp/index.js +14 -3
- package/stable/regexp/instance/flags.js +11 -0
- package/stable/regexp/match.js +2 -3
- package/stable/regexp/replace.js +2 -3
- package/stable/regexp/search.js +2 -3
- package/stable/regexp/split.js +2 -3
- package/stable/regexp/sticky.js +3 -3
- package/stable/regexp/test.js +5 -2
- package/stable/regexp/to-string.js +1 -3
- package/stable/self.js +1 -0
- package/stable/set/constructor.js +18 -0
- package/stable/set/difference.js +9 -2
- package/stable/set/index.js +15 -2
- package/stable/set/intersection.js +9 -2
- package/stable/set/is-disjoint-from.js +9 -2
- package/stable/set/is-subset-of.js +9 -2
- package/stable/set/is-superset-of.js +9 -2
- package/stable/set/prototype/difference.js +11 -0
- package/stable/set/prototype/intersection.js +11 -0
- package/stable/set/prototype/is-disjoint-from.js +11 -0
- package/stable/set/prototype/is-subset-of.js +11 -0
- package/stable/set/prototype/is-superset-of.js +11 -0
- package/stable/set/prototype/symmetric-difference.js +11 -0
- package/stable/set/prototype/union.js +11 -0
- package/stable/set/symmetric-difference.js +9 -2
- package/stable/set/union.js +9 -2
- package/stable/set-immediate.js +2 -1
- package/stable/string/anchor.js +4 -2
- package/stable/string/at.js +4 -2
- package/stable/string/big.js +4 -2
- package/stable/string/blink.js +4 -2
- package/stable/string/bold.js +4 -2
- package/stable/string/code-point-at.js +4 -2
- package/stable/string/ends-with.js +4 -2
- package/stable/string/fixed.js +4 -2
- package/stable/string/fontcolor.js +4 -2
- package/stable/string/fontsize.js +4 -2
- package/stable/string/from-code-point.js +4 -2
- package/stable/string/includes.js +4 -2
- package/stable/string/index.js +42 -2
- package/stable/string/instance/anchor.js +12 -0
- package/stable/string/instance/at.js +12 -0
- package/stable/string/instance/big.js +12 -0
- package/stable/string/instance/blink.js +12 -0
- package/stable/string/instance/bold.js +12 -0
- package/stable/string/instance/code-point-at.js +12 -0
- package/stable/string/instance/ends-with.js +12 -0
- package/stable/string/instance/fixed.js +12 -0
- package/stable/string/instance/fontcolor.js +12 -0
- package/stable/string/instance/fontsize.js +12 -0
- package/stable/string/instance/includes.js +12 -0
- package/stable/string/instance/is-well-formed.js +12 -0
- package/stable/string/instance/italics.js +12 -0
- package/stable/string/instance/link.js +12 -0
- package/stable/string/instance/match-all.js +12 -0
- package/stable/string/instance/pad-end.js +12 -0
- package/stable/string/instance/pad-start.js +12 -0
- package/stable/string/instance/repeat.js +12 -0
- package/stable/string/instance/replace-all.js +12 -0
- package/stable/string/instance/small.js +12 -0
- package/stable/string/instance/starts-with.js +12 -0
- package/stable/string/instance/strike.js +12 -0
- package/stable/string/instance/sub.js +12 -0
- package/stable/string/instance/sup.js +12 -0
- package/stable/string/instance/to-well-formed.js +12 -0
- package/stable/string/instance/trim-end.js +12 -0
- package/stable/string/instance/trim-left.js +12 -0
- package/stable/string/instance/trim-right.js +12 -0
- package/stable/string/instance/trim-start.js +12 -0
- package/stable/string/instance/trim.js +12 -0
- package/stable/string/is-well-formed.js +4 -2
- package/stable/string/italics.js +4 -2
- package/stable/string/iterator.js +6 -2
- package/stable/string/link.js +4 -2
- package/stable/string/match-all.js +6 -2
- package/stable/string/match.js +2 -3
- package/stable/string/pad-end.js +5 -2
- package/stable/string/pad-start.js +5 -2
- package/stable/string/prototype/anchor.js +6 -0
- package/stable/string/prototype/at.js +6 -0
- package/stable/string/prototype/big.js +6 -0
- package/stable/string/prototype/blink.js +6 -0
- package/stable/string/prototype/bold.js +6 -0
- package/stable/string/prototype/code-point-at.js +6 -0
- package/stable/string/prototype/ends-with.js +6 -0
- package/stable/string/prototype/fixed.js +6 -0
- package/stable/string/prototype/fontcolor.js +6 -0
- package/stable/string/prototype/fontsize.js +6 -0
- package/stable/string/prototype/includes.js +6 -0
- package/stable/string/prototype/is-well-formed.js +6 -0
- package/stable/string/prototype/italics.js +6 -0
- package/stable/string/prototype/iterator.js +7 -0
- package/stable/string/prototype/link.js +6 -0
- package/stable/string/prototype/match-all.js +8 -0
- package/stable/string/prototype/pad-end.js +7 -0
- package/stable/string/prototype/pad-start.js +7 -0
- package/stable/string/prototype/repeat.js +6 -0
- package/stable/string/prototype/replace-all.js +8 -0
- package/stable/string/prototype/small.js +6 -0
- package/stable/string/prototype/starts-with.js +6 -0
- package/stable/string/prototype/strike.js +6 -0
- package/stable/string/prototype/sub.js +6 -0
- package/stable/string/prototype/sup.js +6 -0
- package/stable/string/prototype/to-well-formed.js +6 -0
- package/stable/string/prototype/trim-end.js +6 -0
- package/stable/string/prototype/trim-left.js +6 -0
- package/stable/string/prototype/trim-right.js +6 -0
- package/stable/string/prototype/trim-start.js +6 -0
- package/stable/string/prototype/trim.js +6 -0
- package/stable/string/raw.js +4 -2
- package/stable/string/repeat.js +4 -2
- package/stable/string/replace-all.js +6 -2
- package/stable/string/replace.js +2 -3
- package/stable/string/search.js +2 -3
- package/stable/string/small.js +4 -2
- package/stable/string/split.js +2 -3
- package/stable/string/starts-with.js +4 -2
- package/stable/string/strike.js +4 -2
- package/stable/string/sub.js +4 -2
- package/stable/string/sup.js +4 -2
- package/stable/string/to-well-formed.js +4 -2
- package/stable/string/trim-end.js +4 -2
- package/stable/string/trim-left.js +4 -2
- package/stable/string/trim-right.js +4 -2
- package/stable/string/trim-start.js +4 -2
- package/stable/string/trim.js +4 -2
- package/stable/structured-clone.js +6 -5
- package/stable/suppressed-error/constructor.js +6 -0
- package/stable/suppressed-error/index.js +7 -0
- package/stable/suppressed-error/is-error.js +6 -0
- package/stable/symbol/async-dispose.js +10 -2
- package/stable/symbol/async-iterator.js +4 -2
- package/stable/symbol/constructor.js +8 -0
- package/stable/symbol/description.js +1 -3
- package/stable/symbol/dispose.js +5 -2
- package/stable/symbol/for.js +7 -2
- package/stable/symbol/has-instance.js +5 -2
- package/stable/symbol/index.js +23 -3
- package/stable/symbol/is-concat-spreadable.js +4 -2
- package/stable/symbol/iterator.js +7 -2
- package/stable/symbol/key-for.js +4 -2
- package/stable/symbol/match-all.js +4 -2
- package/stable/symbol/match.js +4 -2
- package/stable/symbol/replace.js +4 -2
- package/stable/symbol/search.js +4 -2
- package/stable/symbol/species.js +4 -2
- package/stable/symbol/split.js +4 -2
- package/stable/symbol/to-primitive.js +5 -2
- package/stable/symbol/to-string-tag.js +7 -2
- package/stable/symbol/unscopables.js +4 -2
- package/stable/syntax-error/constructor.js +6 -0
- package/stable/syntax-error/index.js +7 -0
- package/stable/syntax-error/is-error.js +6 -0
- package/stable/type-error/constructor.js +6 -0
- package/stable/type-error/index.js +7 -0
- package/stable/type-error/is-error.js +6 -0
- package/stable/typed-array/at.js +1 -3
- package/stable/typed-array/constructors.js +18 -0
- package/stable/typed-array/copy-within.js +1 -3
- package/stable/typed-array/entries.js +3 -3
- package/stable/typed-array/every.js +1 -3
- package/stable/typed-array/fill.js +1 -3
- package/stable/typed-array/filter.js +1 -3
- package/stable/typed-array/find-index.js +1 -3
- package/stable/typed-array/find-last-index.js +1 -1
- package/stable/typed-array/find-last.js +1 -1
- package/stable/typed-array/find.js +1 -3
- package/stable/typed-array/for-each.js +1 -3
- package/stable/typed-array/from-base64.js +43 -3
- package/stable/typed-array/from-hex.js +43 -3
- package/stable/typed-array/from.js +45 -3
- package/stable/typed-array/includes.js +1 -3
- package/stable/typed-array/index-of.js +1 -3
- package/stable/typed-array/index.js +60 -2
- package/stable/typed-array/iterator.js +3 -3
- package/stable/typed-array/join.js +1 -3
- package/stable/typed-array/keys.js +3 -3
- package/stable/typed-array/last-index-of.js +1 -3
- package/stable/typed-array/map.js +1 -3
- package/stable/typed-array/methods.js +48 -3
- package/stable/typed-array/of.js +43 -3
- package/stable/typed-array/reduce-right.js +1 -3
- package/stable/typed-array/reduce.js +1 -3
- package/stable/typed-array/reverse.js +1 -3
- package/stable/typed-array/set-from-base64.js +1 -3
- package/stable/typed-array/set-from-hex.js +1 -3
- package/stable/typed-array/set.js +1 -3
- package/stable/typed-array/slice.js +1 -3
- package/stable/typed-array/some.js +1 -3
- package/stable/typed-array/sort.js +1 -3
- package/stable/typed-array/subarray.js +1 -3
- package/stable/typed-array/to-base64.js +1 -3
- package/stable/typed-array/to-hex.js +1 -3
- package/stable/typed-array/to-locale-string.js +1 -3
- package/stable/typed-array/to-reversed.js +1 -3
- package/stable/typed-array/to-sorted.js +1 -3
- package/stable/typed-array/to-string.js +1 -3
- package/stable/typed-array/values.js +4 -3
- package/stable/typed-array/with.js +1 -3
- package/stable/uint16-array/at.js +2 -0
- package/stable/uint16-array/constructor.js +46 -0
- package/stable/uint16-array/copy-within.js +2 -0
- package/stable/uint16-array/entries.js +4 -0
- package/stable/uint16-array/every.js +2 -0
- package/stable/uint16-array/fill.js +2 -0
- package/stable/uint16-array/filter.js +2 -0
- package/stable/uint16-array/find-index.js +2 -0
- package/stable/uint16-array/find-last-index.js +2 -0
- package/stable/uint16-array/find-last.js +2 -0
- package/stable/uint16-array/find.js +2 -0
- package/stable/uint16-array/for-each.js +2 -0
- package/stable/uint16-array/from.js +42 -0
- package/stable/uint16-array/includes.js +2 -0
- package/stable/uint16-array/index-of.js +2 -0
- package/stable/uint16-array/index.js +48 -0
- package/stable/uint16-array/iterator.js +4 -0
- package/stable/uint16-array/join.js +2 -0
- package/stable/uint16-array/keys.js +4 -0
- package/stable/uint16-array/last-index-of.js +2 -0
- package/stable/uint16-array/map.js +2 -0
- package/stable/uint16-array/of.js +40 -0
- package/stable/uint16-array/reduce-right.js +2 -0
- package/stable/uint16-array/reduce.js +2 -0
- package/stable/uint16-array/reverse.js +2 -0
- package/stable/uint16-array/set.js +2 -0
- package/stable/uint16-array/slice.js +2 -0
- package/stable/uint16-array/some.js +2 -0
- package/stable/uint16-array/sort.js +2 -0
- package/stable/uint16-array/subarray.js +2 -0
- package/stable/uint16-array/to-locale-string.js +2 -0
- package/stable/uint16-array/to-reversed.js +2 -0
- package/stable/uint16-array/to-sorted.js +2 -0
- package/stable/uint16-array/to-string.js +2 -0
- package/stable/uint16-array/values.js +5 -0
- package/stable/uint16-array/with.js +2 -0
- package/stable/uint32-array/at.js +2 -0
- package/stable/uint32-array/constructor.js +46 -0
- package/stable/uint32-array/copy-within.js +2 -0
- package/stable/uint32-array/entries.js +4 -0
- package/stable/uint32-array/every.js +2 -0
- package/stable/uint32-array/fill.js +2 -0
- package/stable/uint32-array/filter.js +2 -0
- package/stable/uint32-array/find-index.js +2 -0
- package/stable/uint32-array/find-last-index.js +2 -0
- package/stable/uint32-array/find-last.js +2 -0
- package/stable/uint32-array/find.js +2 -0
- package/stable/uint32-array/for-each.js +2 -0
- package/stable/uint32-array/from.js +42 -0
- package/stable/uint32-array/includes.js +2 -0
- package/stable/uint32-array/index-of.js +2 -0
- package/stable/uint32-array/index.js +48 -0
- package/stable/uint32-array/iterator.js +4 -0
- package/stable/uint32-array/join.js +2 -0
- package/stable/uint32-array/keys.js +4 -0
- package/stable/uint32-array/last-index-of.js +2 -0
- package/stable/uint32-array/map.js +2 -0
- package/stable/uint32-array/of.js +40 -0
- package/stable/uint32-array/reduce-right.js +2 -0
- package/stable/uint32-array/reduce.js +2 -0
- package/stable/uint32-array/reverse.js +2 -0
- package/stable/uint32-array/set.js +2 -0
- package/stable/uint32-array/slice.js +2 -0
- package/stable/uint32-array/some.js +2 -0
- package/stable/uint32-array/sort.js +2 -0
- package/stable/uint32-array/subarray.js +2 -0
- package/stable/uint32-array/to-locale-string.js +2 -0
- package/stable/uint32-array/to-reversed.js +2 -0
- package/stable/uint32-array/to-sorted.js +2 -0
- package/stable/uint32-array/to-string.js +2 -0
- package/stable/uint32-array/values.js +5 -0
- package/stable/uint32-array/with.js +2 -0
- package/stable/uint8-array/at.js +2 -0
- package/stable/uint8-array/constructor.js +50 -0
- package/stable/uint8-array/copy-within.js +2 -0
- package/stable/uint8-array/entries.js +4 -0
- package/stable/uint8-array/every.js +2 -0
- package/stable/uint8-array/fill.js +2 -0
- package/stable/uint8-array/filter.js +2 -0
- package/stable/uint8-array/find-index.js +2 -0
- package/stable/uint8-array/find-last-index.js +2 -0
- package/stable/uint8-array/find-last.js +2 -0
- package/stable/uint8-array/find.js +2 -0
- package/stable/uint8-array/for-each.js +2 -0
- package/stable/uint8-array/from-base64.js +44 -0
- package/stable/uint8-array/from-hex.js +44 -0
- package/stable/uint8-array/from.js +46 -0
- package/stable/uint8-array/includes.js +2 -0
- package/stable/uint8-array/index-of.js +2 -0
- package/stable/uint8-array/index.js +54 -0
- package/stable/uint8-array/iterator.js +4 -0
- package/stable/uint8-array/join.js +2 -0
- package/stable/uint8-array/keys.js +4 -0
- package/stable/uint8-array/last-index-of.js +2 -0
- package/stable/uint8-array/map.js +2 -0
- package/stable/uint8-array/of.js +44 -0
- package/stable/uint8-array/reduce-right.js +2 -0
- package/stable/uint8-array/reduce.js +2 -0
- package/stable/uint8-array/reverse.js +2 -0
- package/stable/uint8-array/set-from-base64.js +2 -0
- package/stable/uint8-array/set-from-hex.js +2 -0
- package/stable/uint8-array/set.js +2 -0
- package/stable/uint8-array/slice.js +2 -0
- package/stable/uint8-array/some.js +2 -0
- package/stable/uint8-array/sort.js +2 -0
- package/stable/uint8-array/subarray.js +2 -0
- package/stable/uint8-array/to-base64.js +2 -0
- package/stable/uint8-array/to-hex.js +2 -0
- package/stable/uint8-array/to-locale-string.js +2 -0
- package/stable/uint8-array/to-reversed.js +2 -0
- package/stable/uint8-array/to-sorted.js +2 -0
- package/stable/uint8-array/to-string.js +2 -0
- package/stable/uint8-array/values.js +5 -0
- package/stable/uint8-array/with.js +2 -0
- package/stable/uint8-clamped-array/at.js +2 -0
- package/stable/uint8-clamped-array/constructor.js +46 -0
- package/stable/uint8-clamped-array/copy-within.js +2 -0
- package/stable/uint8-clamped-array/entries.js +4 -0
- package/stable/uint8-clamped-array/every.js +2 -0
- package/stable/uint8-clamped-array/fill.js +2 -0
- package/stable/uint8-clamped-array/filter.js +2 -0
- package/stable/uint8-clamped-array/find-index.js +2 -0
- package/stable/uint8-clamped-array/find-last-index.js +2 -0
- package/stable/uint8-clamped-array/find-last.js +2 -0
- package/stable/uint8-clamped-array/find.js +2 -0
- package/stable/uint8-clamped-array/for-each.js +2 -0
- package/stable/uint8-clamped-array/from.js +42 -0
- package/stable/uint8-clamped-array/includes.js +2 -0
- package/stable/uint8-clamped-array/index-of.js +2 -0
- package/stable/uint8-clamped-array/index.js +48 -0
- package/stable/uint8-clamped-array/iterator.js +4 -0
- package/stable/uint8-clamped-array/join.js +2 -0
- package/stable/uint8-clamped-array/keys.js +4 -0
- package/stable/uint8-clamped-array/last-index-of.js +2 -0
- package/stable/uint8-clamped-array/map.js +2 -0
- package/stable/uint8-clamped-array/of.js +40 -0
- package/stable/uint8-clamped-array/reduce-right.js +2 -0
- package/stable/uint8-clamped-array/reduce.js +2 -0
- package/stable/uint8-clamped-array/reverse.js +2 -0
- package/stable/uint8-clamped-array/set.js +2 -0
- package/stable/uint8-clamped-array/slice.js +2 -0
- package/stable/uint8-clamped-array/some.js +2 -0
- package/stable/uint8-clamped-array/sort.js +2 -0
- package/stable/uint8-clamped-array/subarray.js +2 -0
- package/stable/uint8-clamped-array/to-locale-string.js +2 -0
- package/stable/uint8-clamped-array/to-reversed.js +2 -0
- package/stable/uint8-clamped-array/to-sorted.js +2 -0
- package/stable/uint8-clamped-array/to-string.js +2 -0
- package/stable/uint8-clamped-array/values.js +5 -0
- package/stable/uint8-clamped-array/with.js +2 -0
- package/stable/uri-error/constructor.js +6 -0
- package/stable/uri-error/index.js +7 -0
- package/stable/uri-error/is-error.js +6 -0
- package/stable/url/can-parse.js +12 -3
- package/stable/url/constructor.js +18 -0
- package/stable/url/index.js +18 -2
- package/stable/url/parse.js +12 -3
- package/stable/url/to-json.js +9 -0
- package/stable/url-search-params/constructor.js +14 -0
- package/stable/url-search-params/index.js +11 -2
- package/stable/weak-map/constructor.js +12 -0
- package/stable/weak-map/get-or-insert-computed.js +9 -2
- package/stable/weak-map/get-or-insert.js +9 -2
- package/stable/weak-map/index.js +9 -2
- package/stable/weak-map/prototype/get-or-insert-computed.js +11 -0
- package/stable/weak-map/prototype/get-or-insert.js +11 -0
- package/stable/weak-set/constructor.js +10 -0
- package/stable/weak-set/index.js +7 -2
- package/stage/0.js +353 -10
- package/stage/1.js +352 -26
- package/stage/2.7.js +315 -3
- package/stage/2.js +336 -19
- package/stage/3.js +309 -9
- package/actual/README.md +0 -1
- package/actual/aggregate-error.js +0 -4
- package/actual/array/every.js +0 -4
- package/actual/array/for-each.js +0 -4
- package/actual/array/group-by-to-map.js +0 -7
- package/actual/array/group-by.js +0 -5
- package/actual/array/group-to-map.js +0 -7
- package/actual/array/group.js +0 -5
- package/actual/array/is-array.js +0 -4
- package/actual/array/some.js +0 -4
- package/actual/array/virtual/at.js +0 -4
- package/actual/array/virtual/concat.js +0 -4
- package/actual/array/virtual/copy-within.js +0 -4
- package/actual/array/virtual/entries.js +0 -4
- package/actual/array/virtual/every.js +0 -4
- package/actual/array/virtual/fill.js +0 -4
- package/actual/array/virtual/filter.js +0 -4
- package/actual/array/virtual/find-index.js +0 -4
- package/actual/array/virtual/find-last-index.js +0 -5
- package/actual/array/virtual/find-last.js +0 -5
- package/actual/array/virtual/find.js +0 -4
- package/actual/array/virtual/flat-map.js +0 -4
- package/actual/array/virtual/flat.js +0 -4
- package/actual/array/virtual/for-each.js +0 -4
- package/actual/array/virtual/group-by-to-map.js +0 -7
- package/actual/array/virtual/group-by.js +0 -5
- package/actual/array/virtual/group-to-map.js +0 -7
- package/actual/array/virtual/group.js +0 -5
- package/actual/array/virtual/includes.js +0 -4
- package/actual/array/virtual/index-of.js +0 -4
- package/actual/array/virtual/index.js +0 -17
- package/actual/array/virtual/iterator.js +0 -4
- package/actual/array/virtual/join.js +0 -4
- package/actual/array/virtual/keys.js +0 -4
- package/actual/array/virtual/last-index-of.js +0 -4
- package/actual/array/virtual/map.js +0 -4
- package/actual/array/virtual/push.js +0 -4
- package/actual/array/virtual/reduce-right.js +0 -4
- package/actual/array/virtual/reduce.js +0 -4
- package/actual/array/virtual/reverse.js +0 -4
- package/actual/array/virtual/slice.js +0 -4
- package/actual/array/virtual/some.js +0 -4
- package/actual/array/virtual/sort.js +0 -4
- package/actual/array/virtual/splice.js +0 -4
- package/actual/array/virtual/to-reversed.js +0 -6
- package/actual/array/virtual/to-sorted.js +0 -6
- package/actual/array/virtual/to-spliced.js +0 -6
- package/actual/array/virtual/unshift.js +0 -4
- package/actual/array/virtual/values.js +0 -4
- package/actual/array/virtual/with.js +0 -6
- package/actual/async-iterator/async-dispose.js +0 -3
- package/actual/async-iterator/drop.js +0 -9
- package/actual/async-iterator/every.js +0 -9
- package/actual/async-iterator/filter.js +0 -9
- package/actual/async-iterator/find.js +0 -9
- package/actual/async-iterator/flat-map.js +0 -9
- package/actual/async-iterator/for-each.js +0 -9
- package/actual/async-iterator/from.js +0 -23
- package/actual/async-iterator/map.js +0 -9
- package/actual/async-iterator/reduce.js +0 -9
- package/actual/async-iterator/some.js +0 -9
- package/actual/async-iterator/take.js +0 -9
- package/actual/async-iterator/to-array.js +0 -9
- package/actual/date/get-year.js +0 -4
- package/actual/date/now.js +0 -4
- package/actual/date/set-year.js +0 -4
- package/actual/date/to-gmt-string.js +0 -4
- package/actual/date/to-iso-string.js +0 -4
- package/actual/date/to-primitive.js +0 -4
- package/actual/date/to-string.js +0 -4
- package/actual/dom-exception/to-string-tag.js +0 -4
- package/actual/error/to-string.js +0 -4
- package/actual/escape.js +0 -4
- package/actual/function/bind.js +0 -4
- package/actual/function/has-instance.js +0 -4
- package/actual/function/metadata.js +0 -4
- package/actual/function/virtual/bind.js +0 -4
- package/actual/function/virtual/index.js +0 -4
- package/actual/instance/bind.js +0 -4
- package/actual/instance/every.js +0 -4
- package/actual/instance/group-by-to-map.js +0 -10
- package/actual/instance/group-by.js +0 -10
- package/actual/instance/group-to-map.js +0 -10
- package/actual/instance/group.js +0 -10
- package/actual/instance/some.js +0 -4
- package/actual/iterator/dispose.js +0 -2
- package/actual/iterator/to-async.js +0 -11
- package/actual/json/to-string-tag.js +0 -4
- package/actual/math/to-string-tag.js +0 -4
- package/actual/number/to-precision.js +0 -4
- package/actual/number/virtual/index.js +0 -4
- package/actual/number/virtual/to-exponential.js +0 -4
- package/actual/number/virtual/to-fixed.js +0 -4
- package/actual/number/virtual/to-precision.js +0 -4
- package/actual/reflect/to-string-tag.js +0 -4
- package/actual/set-interval.js +0 -4
- package/actual/set-timeout.js +0 -4
- package/actual/string/substr.js +0 -4
- package/actual/string/virtual/anchor.js +0 -4
- package/actual/string/virtual/at.js +0 -4
- package/actual/string/virtual/big.js +0 -4
- package/actual/string/virtual/blink.js +0 -4
- package/actual/string/virtual/bold.js +0 -4
- package/actual/string/virtual/code-point-at.js +0 -4
- package/actual/string/virtual/ends-with.js +0 -4
- package/actual/string/virtual/fixed.js +0 -4
- package/actual/string/virtual/fontcolor.js +0 -4
- package/actual/string/virtual/fontsize.js +0 -4
- package/actual/string/virtual/includes.js +0 -4
- package/actual/string/virtual/index.js +0 -8
- package/actual/string/virtual/is-well-formed.js +0 -7
- package/actual/string/virtual/italics.js +0 -4
- package/actual/string/virtual/iterator.js +0 -4
- package/actual/string/virtual/link.js +0 -4
- package/actual/string/virtual/match-all.js +0 -4
- package/actual/string/virtual/pad-end.js +0 -4
- package/actual/string/virtual/pad-start.js +0 -4
- package/actual/string/virtual/repeat.js +0 -4
- package/actual/string/virtual/replace-all.js +0 -4
- package/actual/string/virtual/small.js +0 -4
- package/actual/string/virtual/starts-with.js +0 -4
- package/actual/string/virtual/strike.js +0 -4
- package/actual/string/virtual/sub.js +0 -4
- package/actual/string/virtual/substr.js +0 -4
- package/actual/string/virtual/sup.js +0 -4
- package/actual/string/virtual/to-well-formed.js +0 -7
- package/actual/string/virtual/trim-end.js +0 -4
- package/actual/string/virtual/trim-left.js +0 -4
- package/actual/string/virtual/trim-right.js +0 -4
- package/actual/string/virtual/trim-start.js +0 -4
- package/actual/string/virtual/trim.js +0 -4
- package/actual/suppressed-error.js +0 -5
- package/actual/typed-array/float32-array.js +0 -5
- package/actual/typed-array/float64-array.js +0 -5
- package/actual/typed-array/int16-array.js +0 -5
- package/actual/typed-array/int32-array.js +0 -5
- package/actual/typed-array/int8-array.js +0 -5
- package/actual/typed-array/to-spliced.js +0 -3
- package/actual/typed-array/uint16-array.js +0 -5
- package/actual/typed-array/uint32-array.js +0 -5
- package/actual/typed-array/uint8-array.js +0 -5
- package/actual/typed-array/uint8-clamped-array.js +0 -5
- package/actual/unescape.js +0 -4
- package/es/README.md +0 -1
- package/es/aggregate-error.js +0 -9
- package/es/array/every.js +0 -5
- package/es/array/for-each.js +0 -5
- package/es/array/is-array.js +0 -5
- package/es/array/some.js +0 -5
- package/es/array/virtual/at.js +0 -5
- package/es/array/virtual/concat.js +0 -5
- package/es/array/virtual/copy-within.js +0 -5
- package/es/array/virtual/entries.js +0 -6
- package/es/array/virtual/every.js +0 -5
- package/es/array/virtual/fill.js +0 -5
- package/es/array/virtual/filter.js +0 -5
- package/es/array/virtual/find-index.js +0 -5
- package/es/array/virtual/find-last-index.js +0 -5
- package/es/array/virtual/find-last.js +0 -5
- package/es/array/virtual/find.js +0 -5
- package/es/array/virtual/flat-map.js +0 -6
- package/es/array/virtual/flat.js +0 -6
- package/es/array/virtual/for-each.js +0 -5
- package/es/array/virtual/includes.js +0 -5
- package/es/array/virtual/index-of.js +0 -5
- package/es/array/virtual/index.js +0 -40
- package/es/array/virtual/iterator.js +0 -6
- package/es/array/virtual/join.js +0 -5
- package/es/array/virtual/keys.js +0 -6
- package/es/array/virtual/last-index-of.js +0 -5
- package/es/array/virtual/map.js +0 -5
- package/es/array/virtual/push.js +0 -5
- package/es/array/virtual/reduce-right.js +0 -5
- package/es/array/virtual/reduce.js +0 -5
- package/es/array/virtual/reverse.js +0 -5
- package/es/array/virtual/slice.js +0 -5
- package/es/array/virtual/some.js +0 -5
- package/es/array/virtual/sort.js +0 -5
- package/es/array/virtual/splice.js +0 -5
- package/es/array/virtual/to-reversed.js +0 -5
- package/es/array/virtual/to-sorted.js +0 -6
- package/es/array/virtual/to-spliced.js +0 -5
- package/es/array/virtual/unshift.js +0 -5
- package/es/array/virtual/values.js +0 -6
- package/es/array/virtual/with.js +0 -5
- package/es/async-iterator/async-dispose.js +0 -4
- package/es/date/get-year.js +0 -5
- package/es/date/now.js +0 -5
- package/es/date/set-year.js +0 -5
- package/es/date/to-gmt-string.js +0 -5
- package/es/date/to-iso-string.js +0 -6
- package/es/date/to-primitive.js +0 -6
- package/es/date/to-string.js +0 -5
- package/es/error/to-string.js +0 -5
- package/es/escape.js +0 -5
- package/es/function/bind.js +0 -5
- package/es/function/has-instance.js +0 -5
- package/es/function/virtual/bind.js +0 -5
- package/es/function/virtual/index.js +0 -5
- package/es/instance/bind.js +0 -10
- package/es/instance/every.js +0 -10
- package/es/instance/for-each.js +0 -10
- package/es/instance/some.js +0 -10
- package/es/iterator/dispose.js +0 -2
- package/es/json/to-string-tag.js +0 -4
- package/es/math/to-string-tag.js +0 -4
- package/es/number/to-precision.js +0 -5
- package/es/number/virtual/index.js +0 -7
- package/es/number/virtual/to-exponential.js +0 -5
- package/es/number/virtual/to-fixed.js +0 -5
- package/es/number/virtual/to-precision.js +0 -5
- package/es/reflect/to-string-tag.js +0 -5
- package/es/string/substr.js +0 -5
- package/es/string/virtual/anchor.js +0 -5
- package/es/string/virtual/at.js +0 -5
- package/es/string/virtual/big.js +0 -5
- package/es/string/virtual/blink.js +0 -5
- package/es/string/virtual/bold.js +0 -5
- package/es/string/virtual/code-point-at.js +0 -5
- package/es/string/virtual/ends-with.js +0 -5
- package/es/string/virtual/fixed.js +0 -5
- package/es/string/virtual/fontcolor.js +0 -5
- package/es/string/virtual/fontsize.js +0 -5
- package/es/string/virtual/includes.js +0 -5
- package/es/string/virtual/index.js +0 -38
- package/es/string/virtual/is-well-formed.js +0 -5
- package/es/string/virtual/italics.js +0 -5
- package/es/string/virtual/iterator.js +0 -6
- package/es/string/virtual/link.js +0 -5
- package/es/string/virtual/match-all.js +0 -7
- package/es/string/virtual/pad-end.js +0 -5
- package/es/string/virtual/pad-start.js +0 -5
- package/es/string/virtual/repeat.js +0 -5
- package/es/string/virtual/replace-all.js +0 -7
- package/es/string/virtual/small.js +0 -5
- package/es/string/virtual/starts-with.js +0 -5
- package/es/string/virtual/strike.js +0 -5
- package/es/string/virtual/sub.js +0 -5
- package/es/string/virtual/substr.js +0 -5
- package/es/string/virtual/sup.js +0 -5
- package/es/string/virtual/to-well-formed.js +0 -5
- package/es/string/virtual/trim-end.js +0 -5
- package/es/string/virtual/trim-left.js +0 -5
- package/es/string/virtual/trim-right.js +0 -5
- package/es/string/virtual/trim-start.js +0 -5
- package/es/string/virtual/trim.js +0 -5
- package/es/suppressed-error.js +0 -7
- package/es/typed-array/float32-array.js +0 -8
- package/es/typed-array/float64-array.js +0 -8
- package/es/typed-array/int16-array.js +0 -8
- package/es/typed-array/int32-array.js +0 -8
- package/es/typed-array/int8-array.js +0 -8
- package/es/typed-array/uint16-array.js +0 -8
- package/es/typed-array/uint32-array.js +0 -8
- package/es/typed-array/uint8-array.js +0 -8
- package/es/typed-array/uint8-clamped-array.js +0 -8
- package/es/unescape.js +0 -5
- package/features/aggregate-error.js +0 -2
- package/features/array/at.js +0 -2
- package/features/array/concat.js +0 -2
- package/features/array/copy-within.js +0 -2
- package/features/array/entries.js +0 -2
- package/features/array/every.js +0 -2
- package/features/array/fill.js +0 -2
- package/features/array/filter-out.js +0 -2
- package/features/array/filter-reject.js +0 -2
- package/features/array/filter.js +0 -2
- package/features/array/find-index.js +0 -2
- package/features/array/find-last-index.js +0 -2
- package/features/array/find-last.js +0 -2
- package/features/array/find.js +0 -2
- package/features/array/flat-map.js +0 -2
- package/features/array/flat.js +0 -2
- package/features/array/for-each.js +0 -2
- package/features/array/from-async.js +0 -2
- package/features/array/from.js +0 -2
- package/features/array/group-by-to-map.js +0 -2
- package/features/array/group-by.js +0 -2
- package/features/array/group-to-map.js +0 -2
- package/features/array/group.js +0 -2
- package/features/array/includes.js +0 -2
- package/features/array/index-of.js +0 -2
- package/features/array/index.js +0 -2
- package/features/array/is-array.js +0 -2
- package/features/array/is-template-object.js +0 -2
- package/features/array/iterator.js +0 -2
- package/features/array/join.js +0 -2
- package/features/array/keys.js +0 -2
- package/features/array/last-index-of.js +0 -2
- package/features/array/last-index.js +0 -2
- package/features/array/last-item.js +0 -2
- package/features/array/map.js +0 -2
- package/features/array/of.js +0 -2
- package/features/array/push.js +0 -2
- package/features/array/reduce-right.js +0 -2
- package/features/array/reduce.js +0 -2
- package/features/array/reverse.js +0 -2
- package/features/array/slice.js +0 -2
- package/features/array/some.js +0 -2
- package/features/array/sort.js +0 -2
- package/features/array/splice.js +0 -2
- package/features/array/to-reversed.js +0 -2
- package/features/array/to-sorted.js +0 -2
- package/features/array/to-spliced.js +0 -2
- package/features/array/unique-by.js +0 -2
- package/features/array/unshift.js +0 -2
- package/features/array/values.js +0 -2
- package/features/array/virtual/at.js +0 -2
- package/features/array/virtual/concat.js +0 -2
- package/features/array/virtual/copy-within.js +0 -2
- package/features/array/virtual/entries.js +0 -2
- package/features/array/virtual/every.js +0 -2
- package/features/array/virtual/fill.js +0 -2
- package/features/array/virtual/filter-out.js +0 -2
- package/features/array/virtual/filter-reject.js +0 -2
- package/features/array/virtual/filter.js +0 -2
- package/features/array/virtual/find-index.js +0 -2
- package/features/array/virtual/find-last-index.js +0 -2
- package/features/array/virtual/find-last.js +0 -2
- package/features/array/virtual/find.js +0 -2
- package/features/array/virtual/flat-map.js +0 -2
- package/features/array/virtual/flat.js +0 -2
- package/features/array/virtual/for-each.js +0 -2
- package/features/array/virtual/group-by-to-map.js +0 -2
- package/features/array/virtual/group-by.js +0 -2
- package/features/array/virtual/group-to-map.js +0 -2
- package/features/array/virtual/group.js +0 -2
- package/features/array/virtual/includes.js +0 -2
- package/features/array/virtual/index-of.js +0 -2
- package/features/array/virtual/index.js +0 -2
- package/features/array/virtual/iterator.js +0 -2
- package/features/array/virtual/join.js +0 -2
- package/features/array/virtual/keys.js +0 -2
- package/features/array/virtual/last-index-of.js +0 -2
- package/features/array/virtual/map.js +0 -2
- package/features/array/virtual/push.js +0 -2
- package/features/array/virtual/reduce-right.js +0 -2
- package/features/array/virtual/reduce.js +0 -2
- package/features/array/virtual/reverse.js +0 -2
- package/features/array/virtual/slice.js +0 -2
- package/features/array/virtual/some.js +0 -2
- package/features/array/virtual/sort.js +0 -2
- package/features/array/virtual/splice.js +0 -2
- package/features/array/virtual/to-reversed.js +0 -2
- package/features/array/virtual/to-sorted.js +0 -2
- package/features/array/virtual/to-spliced.js +0 -2
- package/features/array/virtual/unique-by.js +0 -2
- package/features/array/virtual/unshift.js +0 -2
- package/features/array/virtual/values.js +0 -2
- package/features/array/virtual/with.js +0 -2
- package/features/array/with.js +0 -2
- package/features/array-buffer/constructor.js +0 -2
- package/features/array-buffer/detached.js +0 -2
- package/features/array-buffer/index.js +0 -2
- package/features/array-buffer/is-view.js +0 -2
- package/features/array-buffer/slice.js +0 -2
- package/features/array-buffer/transfer-to-fixed-length.js +0 -2
- package/features/array-buffer/transfer.js +0 -2
- package/features/async-disposable-stack/constructor.js +0 -2
- package/features/async-disposable-stack/index.js +0 -2
- package/features/async-iterator/as-indexed-pairs.js +0 -2
- package/features/async-iterator/async-dispose.js +0 -2
- package/features/async-iterator/drop.js +0 -2
- package/features/async-iterator/every.js +0 -2
- package/features/async-iterator/filter.js +0 -2
- package/features/async-iterator/find.js +0 -2
- package/features/async-iterator/flat-map.js +0 -2
- package/features/async-iterator/for-each.js +0 -2
- package/features/async-iterator/from.js +0 -2
- package/features/async-iterator/index.js +0 -2
- package/features/async-iterator/indexed.js +0 -2
- package/features/async-iterator/map.js +0 -2
- package/features/async-iterator/reduce.js +0 -2
- package/features/async-iterator/some.js +0 -2
- package/features/async-iterator/take.js +0 -2
- package/features/async-iterator/to-array.js +0 -2
- package/features/atob.js +0 -2
- package/features/bigint/index.js +0 -2
- package/features/bigint/range.js +0 -2
- package/features/btoa.js +0 -2
- package/features/clear-immediate.js +0 -2
- package/features/composite-key.js +0 -2
- package/features/composite-symbol.js +0 -2
- package/features/data-view/get-float16.js +0 -2
- package/features/data-view/get-uint8-clamped.js +0 -2
- package/features/data-view/index.js +0 -2
- package/features/data-view/set-float16.js +0 -2
- package/features/data-view/set-uint8-clamped.js +0 -2
- package/features/date/get-year.js +0 -2
- package/features/date/index.js +0 -2
- package/features/date/now.js +0 -2
- package/features/date/set-year.js +0 -2
- package/features/date/to-gmt-string.js +0 -2
- package/features/date/to-iso-string.js +0 -2
- package/features/date/to-json.js +0 -2
- package/features/date/to-primitive.js +0 -2
- package/features/date/to-string.js +0 -2
- package/features/disposable-stack/constructor.js +0 -2
- package/features/disposable-stack/index.js +0 -2
- package/features/dom-collections/for-each.js +0 -2
- package/features/dom-collections/index.js +0 -2
- package/features/dom-collections/iterator.js +0 -2
- package/features/dom-exception/constructor.js +0 -2
- package/features/dom-exception/index.js +0 -2
- package/features/dom-exception/to-string-tag.js +0 -2
- package/features/error/constructor.js +0 -2
- package/features/error/index.js +0 -2
- package/features/error/is-error.js +0 -2
- package/features/error/to-string.js +0 -2
- package/features/escape.js +0 -2
- package/features/function/bind.js +0 -2
- package/features/function/demethodize.js +0 -2
- package/features/function/has-instance.js +0 -2
- package/features/function/index.js +0 -2
- package/features/function/is-callable.js +0 -2
- package/features/function/is-constructor.js +0 -2
- package/features/function/metadata.js +0 -2
- package/features/function/name.js +0 -2
- package/features/function/un-this.js +0 -2
- package/features/function/virtual/bind.js +0 -2
- package/features/function/virtual/demethodize.js +0 -2
- package/features/function/virtual/index.js +0 -2
- package/features/function/virtual/un-this.js +0 -2
- package/features/get-iterator-method.js +0 -2
- package/features/get-iterator.js +0 -2
- package/features/global-this.js +0 -2
- package/features/index.js +0 -2
- package/features/instance/at.js +0 -2
- package/features/instance/bind.js +0 -2
- package/features/instance/clamp.js +0 -2
- package/features/instance/code-point-at.js +0 -2
- package/features/instance/code-points.js +0 -2
- package/features/instance/concat.js +0 -2
- package/features/instance/copy-within.js +0 -2
- package/features/instance/demethodize.js +0 -2
- package/features/instance/ends-with.js +0 -2
- package/features/instance/entries.js +0 -2
- package/features/instance/every.js +0 -2
- package/features/instance/fill.js +0 -2
- package/features/instance/filter-out.js +0 -2
- package/features/instance/filter-reject.js +0 -2
- package/features/instance/filter.js +0 -2
- package/features/instance/find-index.js +0 -2
- package/features/instance/find-last-index.js +0 -2
- package/features/instance/find-last.js +0 -2
- package/features/instance/find.js +0 -2
- package/features/instance/flags.js +0 -2
- package/features/instance/flat-map.js +0 -2
- package/features/instance/flat.js +0 -2
- package/features/instance/for-each.js +0 -2
- package/features/instance/group-by-to-map.js +0 -2
- package/features/instance/group-by.js +0 -2
- package/features/instance/group-to-map.js +0 -2
- package/features/instance/group.js +0 -2
- package/features/instance/includes.js +0 -2
- package/features/instance/index-of.js +0 -2
- package/features/instance/is-well-formed.js +0 -2
- package/features/instance/keys.js +0 -2
- package/features/instance/last-index-of.js +0 -2
- package/features/instance/map.js +0 -2
- package/features/instance/match-all.js +0 -2
- package/features/instance/pad-end.js +0 -2
- package/features/instance/pad-start.js +0 -2
- package/features/instance/push.js +0 -2
- package/features/instance/reduce-right.js +0 -2
- package/features/instance/reduce.js +0 -2
- package/features/instance/repeat.js +0 -2
- package/features/instance/replace-all.js +0 -2
- package/features/instance/reverse.js +0 -2
- package/features/instance/slice.js +0 -2
- package/features/instance/some.js +0 -2
- package/features/instance/sort.js +0 -2
- package/features/instance/splice.js +0 -2
- package/features/instance/starts-with.js +0 -2
- package/features/instance/to-reversed.js +0 -2
- package/features/instance/to-sorted.js +0 -2
- package/features/instance/to-spliced.js +0 -2
- package/features/instance/to-well-formed.js +0 -2
- package/features/instance/trim-end.js +0 -2
- package/features/instance/trim-left.js +0 -2
- package/features/instance/trim-right.js +0 -2
- package/features/instance/trim-start.js +0 -2
- package/features/instance/trim.js +0 -2
- package/features/instance/un-this.js +0 -2
- package/features/instance/unique-by.js +0 -2
- package/features/instance/unshift.js +0 -2
- package/features/instance/values.js +0 -2
- package/features/instance/with.js +0 -2
- package/features/is-iterable.js +0 -2
- package/features/iterator/as-indexed-pairs.js +0 -2
- package/features/iterator/chunks.js +0 -2
- package/features/iterator/concat.js +0 -2
- package/features/iterator/dispose.js +0 -2
- package/features/iterator/drop.js +0 -2
- package/features/iterator/every.js +0 -2
- package/features/iterator/filter.js +0 -2
- package/features/iterator/find.js +0 -2
- package/features/iterator/flat-map.js +0 -2
- package/features/iterator/for-each.js +0 -2
- package/features/iterator/from.js +0 -2
- package/features/iterator/index.js +0 -2
- package/features/iterator/indexed.js +0 -2
- package/features/iterator/map.js +0 -2
- package/features/iterator/range.js +0 -2
- package/features/iterator/reduce.js +0 -2
- package/features/iterator/sliding.js +0 -2
- package/features/iterator/some.js +0 -2
- package/features/iterator/take.js +0 -2
- package/features/iterator/to-array.js +0 -2
- package/features/iterator/to-async.js +0 -2
- package/features/iterator/windows.js +0 -2
- package/features/iterator/zip-keyed.js +0 -2
- package/features/iterator/zip.js +0 -2
- package/features/json/index.js +0 -2
- package/features/json/is-raw-json.js +0 -2
- package/features/json/parse.js +0 -2
- package/features/json/raw-json.js +0 -2
- package/features/json/stringify.js +0 -2
- package/features/json/to-string-tag.js +0 -2
- package/features/map/delete-all.js +0 -2
- package/features/map/emplace.js +0 -2
- package/features/map/every.js +0 -2
- package/features/map/filter.js +0 -2
- package/features/map/find-key.js +0 -2
- package/features/map/find.js +0 -2
- package/features/map/from.js +0 -2
- package/features/map/get-or-insert-computed.js +0 -2
- package/features/map/get-or-insert.js +0 -2
- package/features/map/group-by.js +0 -2
- package/features/map/includes.js +0 -2
- package/features/map/index.js +0 -2
- package/features/map/key-by.js +0 -2
- package/features/map/key-of.js +0 -2
- package/features/map/map-keys.js +0 -2
- package/features/map/map-values.js +0 -2
- package/features/map/merge.js +0 -2
- package/features/map/of.js +0 -2
- package/features/map/reduce.js +0 -2
- package/features/map/some.js +0 -2
- package/features/map/update-or-insert.js +0 -2
- package/features/map/update.js +0 -2
- package/features/map/upsert.js +0 -2
- package/features/math/acosh.js +0 -2
- package/features/math/asinh.js +0 -2
- package/features/math/atanh.js +0 -2
- package/features/math/cbrt.js +0 -2
- package/features/math/clamp.js +0 -2
- package/features/math/clz32.js +0 -2
- package/features/math/cosh.js +0 -2
- package/features/math/deg-per-rad.js +0 -2
- package/features/math/degrees.js +0 -2
- package/features/math/expm1.js +0 -2
- package/features/math/f16round.js +0 -2
- package/features/math/fround.js +0 -2
- package/features/math/fscale.js +0 -2
- package/features/math/hypot.js +0 -2
- package/features/math/iaddh.js +0 -2
- package/features/math/imul.js +0 -2
- package/features/math/imulh.js +0 -2
- package/features/math/index.js +0 -2
- package/features/math/isubh.js +0 -2
- package/features/math/log10.js +0 -2
- package/features/math/log1p.js +0 -2
- package/features/math/log2.js +0 -2
- package/features/math/rad-per-deg.js +0 -2
- package/features/math/radians.js +0 -2
- package/features/math/scale.js +0 -2
- package/features/math/seeded-prng.js +0 -2
- package/features/math/sign.js +0 -2
- package/features/math/signbit.js +0 -2
- package/features/math/sinh.js +0 -2
- package/features/math/sum-precise.js +0 -2
- package/features/math/tanh.js +0 -2
- package/features/math/to-string-tag.js +0 -2
- package/features/math/trunc.js +0 -2
- package/features/math/umulh.js +0 -2
- package/features/number/clamp.js +0 -2
- package/features/number/constructor.js +0 -2
- package/features/number/epsilon.js +0 -2
- package/features/number/from-string.js +0 -2
- package/features/number/index.js +0 -2
- package/features/number/is-finite.js +0 -2
- package/features/number/is-integer.js +0 -2
- package/features/number/is-nan.js +0 -2
- package/features/number/is-safe-integer.js +0 -2
- package/features/number/max-safe-integer.js +0 -2
- package/features/number/min-safe-integer.js +0 -2
- package/features/number/parse-float.js +0 -2
- package/features/number/parse-int.js +0 -2
- package/features/number/range.js +0 -2
- package/features/number/to-exponential.js +0 -2
- package/features/number/to-fixed.js +0 -2
- package/features/number/to-precision.js +0 -2
- package/features/number/virtual/clamp.js +0 -2
- package/features/number/virtual/index.js +0 -2
- package/features/number/virtual/to-exponential.js +0 -2
- package/features/number/virtual/to-fixed.js +0 -2
- package/features/number/virtual/to-precision.js +0 -2
- package/features/object/assign.js +0 -2
- package/features/object/create.js +0 -2
- package/features/object/define-getter.js +0 -2
- package/features/object/define-properties.js +0 -2
- package/features/object/define-property.js +0 -2
- package/features/object/define-setter.js +0 -2
- package/features/object/entries.js +0 -2
- package/features/object/freeze.js +0 -2
- package/features/object/from-entries.js +0 -2
- package/features/object/get-own-property-descriptor.js +0 -2
- package/features/object/get-own-property-descriptors.js +0 -2
- package/features/object/get-own-property-names.js +0 -2
- package/features/object/get-own-property-symbols.js +0 -2
- package/features/object/get-prototype-of.js +0 -2
- package/features/object/group-by.js +0 -2
- package/features/object/has-own.js +0 -2
- package/features/object/index.js +0 -2
- package/features/object/is-extensible.js +0 -2
- package/features/object/is-frozen.js +0 -2
- package/features/object/is-sealed.js +0 -2
- package/features/object/is.js +0 -2
- package/features/object/iterate-entries.js +0 -2
- package/features/object/iterate-keys.js +0 -2
- package/features/object/iterate-values.js +0 -2
- package/features/object/keys.js +0 -2
- package/features/object/lookup-getter.js +0 -2
- package/features/object/lookup-setter.js +0 -2
- package/features/object/prevent-extensions.js +0 -2
- package/features/object/proto.js +0 -2
- package/features/object/seal.js +0 -2
- package/features/object/set-prototype-of.js +0 -2
- package/features/object/to-string.js +0 -2
- package/features/object/values.js +0 -2
- package/features/observable/index.js +0 -2
- package/features/parse-float.js +0 -2
- package/features/parse-int.js +0 -2
- package/features/promise/all-settled.js +0 -2
- package/features/promise/any.js +0 -2
- package/features/promise/finally.js +0 -2
- package/features/promise/index.js +0 -2
- package/features/promise/try.js +0 -2
- package/features/promise/with-resolvers.js +0 -2
- package/features/queue-microtask.js +0 -2
- package/features/reflect/apply.js +0 -2
- package/features/reflect/construct.js +0 -2
- package/features/reflect/define-metadata.js +0 -2
- package/features/reflect/define-property.js +0 -2
- package/features/reflect/delete-metadata.js +0 -2
- package/features/reflect/delete-property.js +0 -2
- package/features/reflect/get-metadata-keys.js +0 -2
- package/features/reflect/get-metadata.js +0 -2
- package/features/reflect/get-own-metadata-keys.js +0 -2
- package/features/reflect/get-own-metadata.js +0 -2
- package/features/reflect/get-own-property-descriptor.js +0 -2
- package/features/reflect/get-prototype-of.js +0 -2
- package/features/reflect/get.js +0 -2
- package/features/reflect/has-metadata.js +0 -2
- package/features/reflect/has-own-metadata.js +0 -2
- package/features/reflect/has.js +0 -2
- package/features/reflect/index.js +0 -2
- package/features/reflect/is-extensible.js +0 -2
- package/features/reflect/metadata.js +0 -2
- package/features/reflect/own-keys.js +0 -2
- package/features/reflect/prevent-extensions.js +0 -2
- package/features/reflect/set-prototype-of.js +0 -2
- package/features/reflect/set.js +0 -2
- package/features/reflect/to-string-tag.js +0 -2
- package/features/regexp/constructor.js +0 -2
- package/features/regexp/dot-all.js +0 -2
- package/features/regexp/escape.js +0 -2
- package/features/regexp/flags.js +0 -2
- package/features/regexp/index.js +0 -2
- package/features/regexp/match.js +0 -2
- package/features/regexp/replace.js +0 -2
- package/features/regexp/search.js +0 -2
- package/features/regexp/split.js +0 -2
- package/features/regexp/sticky.js +0 -2
- package/features/regexp/test.js +0 -2
- package/features/regexp/to-string.js +0 -2
- package/features/self.js +0 -2
- package/features/set/add-all.js +0 -2
- package/features/set/delete-all.js +0 -2
- package/features/set/difference.js +0 -2
- package/features/set/every.js +0 -2
- package/features/set/filter.js +0 -2
- package/features/set/find.js +0 -2
- package/features/set/from.js +0 -2
- package/features/set/index.js +0 -2
- package/features/set/intersection.js +0 -2
- package/features/set/is-disjoint-from.js +0 -2
- package/features/set/is-subset-of.js +0 -2
- package/features/set/is-superset-of.js +0 -2
- package/features/set/join.js +0 -2
- package/features/set/map.js +0 -2
- package/features/set/of.js +0 -2
- package/features/set/reduce.js +0 -2
- package/features/set/some.js +0 -2
- package/features/set/symmetric-difference.js +0 -2
- package/features/set/union.js +0 -2
- package/features/set-immediate.js +0 -2
- package/features/set-interval.js +0 -2
- package/features/set-timeout.js +0 -2
- package/features/string/anchor.js +0 -2
- package/features/string/at.js +0 -2
- package/features/string/big.js +0 -2
- package/features/string/blink.js +0 -2
- package/features/string/bold.js +0 -2
- package/features/string/code-point-at.js +0 -2
- package/features/string/code-points.js +0 -2
- package/features/string/cooked.js +0 -2
- package/features/string/dedent.js +0 -2
- package/features/string/ends-with.js +0 -2
- package/features/string/fixed.js +0 -2
- package/features/string/fontcolor.js +0 -2
- package/features/string/fontsize.js +0 -2
- package/features/string/from-code-point.js +0 -2
- package/features/string/includes.js +0 -2
- package/features/string/index.js +0 -2
- package/features/string/is-well-formed.js +0 -2
- package/features/string/italics.js +0 -2
- package/features/string/iterator.js +0 -2
- package/features/string/link.js +0 -2
- package/features/string/match-all.js +0 -2
- package/features/string/match.js +0 -2
- package/features/string/pad-end.js +0 -2
- package/features/string/pad-start.js +0 -2
- package/features/string/raw.js +0 -2
- package/features/string/repeat.js +0 -2
- package/features/string/replace-all.js +0 -2
- package/features/string/replace.js +0 -2
- package/features/string/search.js +0 -2
- package/features/string/small.js +0 -2
- package/features/string/split.js +0 -2
- package/features/string/starts-with.js +0 -2
- package/features/string/strike.js +0 -2
- package/features/string/sub.js +0 -2
- package/features/string/substr.js +0 -2
- package/features/string/sup.js +0 -2
- package/features/string/to-well-formed.js +0 -2
- package/features/string/trim-end.js +0 -2
- package/features/string/trim-left.js +0 -2
- package/features/string/trim-right.js +0 -2
- package/features/string/trim-start.js +0 -2
- package/features/string/trim.js +0 -2
- package/features/string/virtual/anchor.js +0 -2
- package/features/string/virtual/at.js +0 -2
- package/features/string/virtual/big.js +0 -2
- package/features/string/virtual/blink.js +0 -2
- package/features/string/virtual/bold.js +0 -2
- package/features/string/virtual/code-point-at.js +0 -2
- package/features/string/virtual/code-points.js +0 -2
- package/features/string/virtual/ends-with.js +0 -2
- package/features/string/virtual/fixed.js +0 -2
- package/features/string/virtual/fontcolor.js +0 -2
- package/features/string/virtual/fontsize.js +0 -2
- package/features/string/virtual/includes.js +0 -2
- package/features/string/virtual/index.js +0 -2
- package/features/string/virtual/is-well-formed.js +0 -2
- package/features/string/virtual/italics.js +0 -2
- package/features/string/virtual/iterator.js +0 -2
- package/features/string/virtual/link.js +0 -2
- package/features/string/virtual/match-all.js +0 -2
- package/features/string/virtual/pad-end.js +0 -2
- package/features/string/virtual/pad-start.js +0 -2
- package/features/string/virtual/repeat.js +0 -2
- package/features/string/virtual/replace-all.js +0 -2
- package/features/string/virtual/small.js +0 -2
- package/features/string/virtual/starts-with.js +0 -2
- package/features/string/virtual/strike.js +0 -2
- package/features/string/virtual/sub.js +0 -2
- package/features/string/virtual/substr.js +0 -2
- package/features/string/virtual/sup.js +0 -2
- package/features/string/virtual/to-well-formed.js +0 -2
- package/features/string/virtual/trim-end.js +0 -2
- package/features/string/virtual/trim-left.js +0 -2
- package/features/string/virtual/trim-right.js +0 -2
- package/features/string/virtual/trim-start.js +0 -2
- package/features/string/virtual/trim.js +0 -2
- package/features/structured-clone.js +0 -2
- package/features/suppressed-error.js +0 -2
- package/features/symbol/async-dispose.js +0 -2
- package/features/symbol/async-iterator.js +0 -2
- package/features/symbol/custom-matcher.js +0 -2
- package/features/symbol/description.js +0 -2
- package/features/symbol/dispose.js +0 -2
- package/features/symbol/for.js +0 -2
- package/features/symbol/has-instance.js +0 -2
- package/features/symbol/index.js +0 -2
- package/features/symbol/is-concat-spreadable.js +0 -2
- package/features/symbol/is-registered-symbol.js +0 -2
- package/features/symbol/is-registered.js +0 -2
- package/features/symbol/is-well-known-symbol.js +0 -2
- package/features/symbol/is-well-known.js +0 -2
- package/features/symbol/iterator.js +0 -2
- package/features/symbol/key-for.js +0 -2
- package/features/symbol/match-all.js +0 -2
- package/features/symbol/match.js +0 -2
- package/features/symbol/matcher.js +0 -2
- package/features/symbol/metadata-key.js +0 -2
- package/features/symbol/metadata.js +0 -2
- package/features/symbol/observable.js +0 -2
- package/features/symbol/pattern-match.js +0 -2
- package/features/symbol/replace-all.js +0 -2
- package/features/symbol/replace.js +0 -2
- package/features/symbol/search.js +0 -2
- package/features/symbol/species.js +0 -2
- package/features/symbol/split.js +0 -2
- package/features/symbol/to-primitive.js +0 -2
- package/features/symbol/to-string-tag.js +0 -2
- package/features/symbol/unscopables.js +0 -2
- package/features/typed-array/at.js +0 -2
- package/features/typed-array/copy-within.js +0 -2
- package/features/typed-array/entries.js +0 -2
- package/features/typed-array/every.js +0 -2
- package/features/typed-array/fill.js +0 -2
- package/features/typed-array/filter-out.js +0 -2
- package/features/typed-array/filter-reject.js +0 -2
- package/features/typed-array/filter.js +0 -2
- package/features/typed-array/find-index.js +0 -2
- package/features/typed-array/find-last-index.js +0 -2
- package/features/typed-array/find-last.js +0 -2
- package/features/typed-array/find.js +0 -2
- package/features/typed-array/float32-array.js +0 -2
- package/features/typed-array/float64-array.js +0 -2
- package/features/typed-array/for-each.js +0 -2
- package/features/typed-array/from-async.js +0 -2
- package/features/typed-array/from-base64.js +0 -2
- package/features/typed-array/from-hex.js +0 -2
- package/features/typed-array/from.js +0 -2
- package/features/typed-array/group-by.js +0 -2
- package/features/typed-array/includes.js +0 -2
- package/features/typed-array/index-of.js +0 -2
- package/features/typed-array/index.js +0 -2
- package/features/typed-array/int16-array.js +0 -2
- package/features/typed-array/int32-array.js +0 -2
- package/features/typed-array/int8-array.js +0 -2
- package/features/typed-array/iterator.js +0 -2
- package/features/typed-array/join.js +0 -2
- package/features/typed-array/keys.js +0 -2
- package/features/typed-array/last-index-of.js +0 -2
- package/features/typed-array/map.js +0 -2
- package/features/typed-array/methods.js +0 -2
- package/features/typed-array/of.js +0 -2
- package/features/typed-array/reduce-right.js +0 -2
- package/features/typed-array/reduce.js +0 -2
- package/features/typed-array/reverse.js +0 -2
- package/features/typed-array/set-from-base64.js +0 -2
- package/features/typed-array/set-from-hex.js +0 -2
- package/features/typed-array/set.js +0 -2
- package/features/typed-array/slice.js +0 -2
- package/features/typed-array/some.js +0 -2
- package/features/typed-array/sort.js +0 -2
- package/features/typed-array/subarray.js +0 -2
- package/features/typed-array/to-base64.js +0 -2
- package/features/typed-array/to-hex.js +0 -2
- package/features/typed-array/to-locale-string.js +0 -2
- package/features/typed-array/to-reversed.js +0 -2
- package/features/typed-array/to-sorted.js +0 -2
- package/features/typed-array/to-spliced.js +0 -2
- package/features/typed-array/to-string.js +0 -2
- package/features/typed-array/uint16-array.js +0 -2
- package/features/typed-array/uint32-array.js +0 -2
- package/features/typed-array/uint8-array.js +0 -2
- package/features/typed-array/uint8-clamped-array.js +0 -2
- package/features/typed-array/unique-by.js +0 -2
- package/features/typed-array/values.js +0 -2
- package/features/typed-array/with.js +0 -2
- package/features/unescape.js +0 -2
- package/features/url/can-parse.js +0 -2
- package/features/url/index.js +0 -2
- package/features/url/parse.js +0 -2
- package/features/url/to-json.js +0 -2
- package/features/url-search-params/index.js +0 -2
- package/features/weak-map/delete-all.js +0 -2
- package/features/weak-map/emplace.js +0 -2
- package/features/weak-map/from.js +0 -2
- package/features/weak-map/get-or-insert-computed.js +0 -2
- package/features/weak-map/get-or-insert.js +0 -2
- package/features/weak-map/index.js +0 -2
- package/features/weak-map/of.js +0 -2
- package/features/weak-map/upsert.js +0 -2
- package/features/weak-set/add-all.js +0 -2
- package/features/weak-set/delete-all.js +0 -2
- package/features/weak-set/from.js +0 -2
- package/features/weak-set/index.js +0 -2
- package/features/weak-set/of.js +0 -2
- package/full/README.md +0 -1
- package/full/aggregate-error.js +0 -7
- package/full/array/every.js +0 -4
- package/full/array/filter-out.js +0 -6
- package/full/array/for-each.js +0 -4
- package/full/array/group-by-to-map.js +0 -4
- package/full/array/group-by.js +0 -4
- package/full/array/group-to-map.js +0 -4
- package/full/array/group.js +0 -4
- package/full/array/is-array.js +0 -4
- package/full/array/last-index.js +0 -2
- package/full/array/last-item.js +0 -2
- package/full/array/some.js +0 -4
- package/full/array/virtual/at.js +0 -7
- package/full/array/virtual/concat.js +0 -4
- package/full/array/virtual/copy-within.js +0 -4
- package/full/array/virtual/entries.js +0 -4
- package/full/array/virtual/every.js +0 -4
- package/full/array/virtual/fill.js +0 -4
- package/full/array/virtual/filter-out.js +0 -6
- package/full/array/virtual/filter-reject.js +0 -5
- package/full/array/virtual/filter.js +0 -4
- package/full/array/virtual/find-index.js +0 -4
- package/full/array/virtual/find-last-index.js +0 -4
- package/full/array/virtual/find-last.js +0 -4
- package/full/array/virtual/find.js +0 -4
- package/full/array/virtual/flat-map.js +0 -4
- package/full/array/virtual/flat.js +0 -4
- package/full/array/virtual/for-each.js +0 -4
- package/full/array/virtual/group-by-to-map.js +0 -4
- package/full/array/virtual/group-by.js +0 -4
- package/full/array/virtual/group-to-map.js +0 -4
- package/full/array/virtual/group.js +0 -4
- package/full/array/virtual/includes.js +0 -4
- package/full/array/virtual/index-of.js +0 -4
- package/full/array/virtual/index.js +0 -10
- package/full/array/virtual/iterator.js +0 -4
- package/full/array/virtual/join.js +0 -4
- package/full/array/virtual/keys.js +0 -4
- package/full/array/virtual/last-index-of.js +0 -4
- package/full/array/virtual/map.js +0 -4
- package/full/array/virtual/push.js +0 -4
- package/full/array/virtual/reduce-right.js +0 -4
- package/full/array/virtual/reduce.js +0 -4
- package/full/array/virtual/reverse.js +0 -4
- package/full/array/virtual/slice.js +0 -4
- package/full/array/virtual/some.js +0 -4
- package/full/array/virtual/sort.js +0 -4
- package/full/array/virtual/splice.js +0 -4
- package/full/array/virtual/to-reversed.js +0 -4
- package/full/array/virtual/to-sorted.js +0 -4
- package/full/array/virtual/to-spliced.js +0 -4
- package/full/array/virtual/unique-by.js +0 -6
- package/full/array/virtual/unshift.js +0 -4
- package/full/array/virtual/values.js +0 -4
- package/full/array/virtual/with.js +0 -4
- package/full/async-iterator/as-indexed-pairs.js +0 -9
- package/full/async-iterator/async-dispose.js +0 -4
- package/full/async-iterator/indexed.js +0 -10
- package/full/bigint/index.js +0 -6
- package/full/bigint/range.js +0 -6
- package/full/composite-key.js +0 -5
- package/full/composite-symbol.js +0 -6
- package/full/date/get-year.js +0 -4
- package/full/date/now.js +0 -4
- package/full/date/set-year.js +0 -4
- package/full/date/to-gmt-string.js +0 -4
- package/full/date/to-iso-string.js +0 -4
- package/full/date/to-primitive.js +0 -4
- package/full/date/to-string.js +0 -4
- package/full/dom-exception/to-string-tag.js +0 -4
- package/full/error/to-string.js +0 -4
- package/full/escape.js +0 -4
- package/full/function/bind.js +0 -4
- package/full/function/has-instance.js +0 -4
- package/full/function/is-callable.js +0 -5
- package/full/function/is-constructor.js +0 -5
- package/full/function/metadata.js +0 -4
- package/full/function/un-this.js +0 -5
- package/full/function/virtual/bind.js +0 -4
- package/full/function/virtual/demethodize.js +0 -5
- package/full/function/virtual/index.js +0 -7
- package/full/function/virtual/un-this.js +0 -5
- package/full/instance/bind.js +0 -4
- package/full/instance/code-points.js +0 -11
- package/full/instance/every.js +0 -4
- package/full/instance/filter-out.js +0 -11
- package/full/instance/group-by-to-map.js +0 -4
- package/full/instance/group-by.js +0 -4
- package/full/instance/group-to-map.js +0 -4
- package/full/instance/group.js +0 -4
- package/full/instance/some.js +0 -4
- package/full/instance/un-this.js +0 -10
- package/full/iterator/as-indexed-pairs.js +0 -9
- package/full/iterator/dispose.js +0 -4
- package/full/iterator/indexed.js +0 -10
- package/full/iterator/sliding.js +0 -8
- package/full/json/to-string-tag.js +0 -4
- package/full/map/delete-all.js +0 -6
- package/full/map/emplace.js +0 -6
- package/full/map/every.js +0 -6
- package/full/map/filter.js +0 -6
- package/full/map/find-key.js +0 -6
- package/full/map/find.js +0 -6
- package/full/map/includes.js +0 -6
- package/full/map/key-by.js +0 -30
- package/full/map/key-of.js +0 -6
- package/full/map/map-keys.js +0 -6
- package/full/map/map-values.js +0 -6
- package/full/map/merge.js +0 -6
- package/full/map/reduce.js +0 -6
- package/full/map/some.js +0 -6
- package/full/map/update-or-insert.js +0 -7
- package/full/map/update.js +0 -6
- package/full/map/upsert.js +0 -6
- package/full/math/clamp.js +0 -6
- package/full/math/deg-per-rad.js +0 -4
- package/full/math/degrees.js +0 -5
- package/full/math/fscale.js +0 -5
- package/full/math/iaddh.js +0 -5
- package/full/math/imulh.js +0 -5
- package/full/math/isubh.js +0 -5
- package/full/math/rad-per-deg.js +0 -4
- package/full/math/radians.js +0 -5
- package/full/math/scale.js +0 -5
- package/full/math/seeded-prng.js +0 -5
- package/full/math/signbit.js +0 -5
- package/full/math/to-string-tag.js +0 -4
- package/full/math/umulh.js +0 -5
- package/full/number/from-string.js +0 -5
- package/full/number/range.js +0 -6
- package/full/number/to-precision.js +0 -4
- package/full/number/virtual/clamp.js +0 -5
- package/full/number/virtual/index.js +0 -4
- package/full/number/virtual/to-exponential.js +0 -4
- package/full/number/virtual/to-fixed.js +0 -4
- package/full/number/virtual/to-precision.js +0 -4
- package/full/object/iterate-entries.js +0 -5
- package/full/object/iterate-keys.js +0 -5
- package/full/object/iterate-values.js +0 -5
- package/full/observable/index.js +0 -9
- package/full/reflect/define-metadata.js +0 -5
- package/full/reflect/delete-metadata.js +0 -5
- package/full/reflect/get-metadata-keys.js +0 -5
- package/full/reflect/get-metadata.js +0 -5
- package/full/reflect/get-own-metadata-keys.js +0 -5
- package/full/reflect/get-own-metadata.js +0 -5
- package/full/reflect/has-metadata.js +0 -5
- package/full/reflect/has-own-metadata.js +0 -5
- package/full/reflect/metadata.js +0 -5
- package/full/reflect/to-string-tag.js +0 -4
- package/full/set/add-all.js +0 -6
- package/full/set/delete-all.js +0 -6
- package/full/set/every.js +0 -6
- package/full/set/filter.js +0 -6
- package/full/set/find.js +0 -6
- package/full/set/join.js +0 -6
- package/full/set/map.js +0 -6
- package/full/set/reduce.js +0 -6
- package/full/set/some.js +0 -6
- package/full/set-interval.js +0 -4
- package/full/set-timeout.js +0 -4
- package/full/string/code-points.js +0 -5
- package/full/string/substr.js +0 -4
- package/full/string/virtual/anchor.js +0 -4
- package/full/string/virtual/at.js +0 -7
- package/full/string/virtual/big.js +0 -4
- package/full/string/virtual/blink.js +0 -4
- package/full/string/virtual/bold.js +0 -4
- package/full/string/virtual/code-point-at.js +0 -4
- package/full/string/virtual/code-points.js +0 -6
- package/full/string/virtual/ends-with.js +0 -4
- package/full/string/virtual/fixed.js +0 -4
- package/full/string/virtual/fontcolor.js +0 -4
- package/full/string/virtual/fontsize.js +0 -4
- package/full/string/virtual/includes.js +0 -4
- package/full/string/virtual/index.js +0 -10
- package/full/string/virtual/is-well-formed.js +0 -4
- package/full/string/virtual/italics.js +0 -4
- package/full/string/virtual/iterator.js +0 -4
- package/full/string/virtual/link.js +0 -4
- package/full/string/virtual/match-all.js +0 -7
- package/full/string/virtual/pad-end.js +0 -4
- package/full/string/virtual/pad-start.js +0 -4
- package/full/string/virtual/repeat.js +0 -4
- package/full/string/virtual/replace-all.js +0 -7
- package/full/string/virtual/small.js +0 -4
- package/full/string/virtual/starts-with.js +0 -4
- package/full/string/virtual/strike.js +0 -4
- package/full/string/virtual/sub.js +0 -4
- package/full/string/virtual/substr.js +0 -4
- package/full/string/virtual/sup.js +0 -4
- package/full/string/virtual/to-well-formed.js +0 -4
- package/full/string/virtual/trim-end.js +0 -4
- package/full/string/virtual/trim-left.js +0 -4
- package/full/string/virtual/trim-right.js +0 -4
- package/full/string/virtual/trim-start.js +0 -4
- package/full/string/virtual/trim.js +0 -4
- package/full/suppressed-error.js +0 -4
- package/full/symbol/is-registered.js +0 -6
- package/full/symbol/is-well-known.js +0 -6
- package/full/symbol/matcher.js +0 -5
- package/full/symbol/metadata-key.js +0 -5
- package/full/symbol/observable.js +0 -5
- package/full/symbol/pattern-match.js +0 -6
- package/full/symbol/replace-all.js +0 -6
- package/full/typed-array/filter-out.js +0 -3
- package/full/typed-array/float32-array.js +0 -5
- package/full/typed-array/float64-array.js +0 -5
- package/full/typed-array/from-async.js +0 -2
- package/full/typed-array/group-by.js +0 -2
- package/full/typed-array/int16-array.js +0 -5
- package/full/typed-array/int32-array.js +0 -5
- package/full/typed-array/int8-array.js +0 -5
- package/full/typed-array/to-spliced.js +0 -5
- package/full/typed-array/uint16-array.js +0 -5
- package/full/typed-array/uint32-array.js +0 -5
- package/full/typed-array/uint8-array.js +0 -5
- package/full/typed-array/uint8-clamped-array.js +0 -5
- package/full/unescape.js +0 -4
- package/full/weak-map/delete-all.js +0 -6
- package/full/weak-map/emplace.js +0 -6
- package/full/weak-map/upsert.js +0 -6
- package/full/weak-set/add-all.js +0 -6
- package/full/weak-set/delete-all.js +0 -6
- package/internals/a-map.js +0 -8
- package/internals/a-weak-set.js +0 -8
- package/internals/array-buffer-basic-detection.js +0 -3
- package/internals/array-buffer-view-core.js +0 -193
- package/internals/array-buffer.js +0 -259
- package/internals/array-for-each.js +0 -12
- package/internals/array-from-async.js +0 -49
- package/internals/array-from.js +0 -52
- package/internals/array-group-to-map.js +0 -31
- package/internals/array-group.js +0 -37
- package/internals/array-last-index-of.js +0 -28
- package/internals/async-iterator-indexed.js +0 -13
- package/internals/async-iterator-map.js +0 -59
- package/internals/composite-key.js +0 -50
- package/internals/correct-prototype-getter.js +0 -9
- package/internals/date-to-iso-string.js +0 -41
- package/internals/descriptors.js +0 -8
- package/internals/entry-virtual.js +0 -6
- package/internals/enum-bug-keys.js +0 -11
- package/internals/error-to-string.js +0 -29
- package/internals/freezing.js +0 -7
- package/internals/function-bind-native.js +0 -9
- package/internals/function-demethodize.js +0 -7
- package/internals/hidden-keys.js +0 -2
- package/internals/html.js +0 -4
- package/internals/ie8-dom-define.js +0 -12
- package/internals/ieee754.js +0 -103
- package/internals/indexed-object.js +0 -16
- package/internals/internal-metadata.js +0 -91
- package/internals/is-array.js +0 -9
- package/internals/is-forced.js +0 -23
- package/internals/iterator-indexed.js +0 -14
- package/internals/iterator-window.js +0 -50
- package/internals/iterators-core.js +0 -49
- package/internals/map-upsert.js +0 -31
- package/internals/math-clamp.js +0 -9
- package/internals/math-float-round.js +0 -19
- package/internals/math-fround.js +0 -13
- package/internals/math-log2.js +0 -10
- package/internals/math-scale.js +0 -14
- package/internals/number-parse-float.js +0 -23
- package/internals/number-parse-int.js +0 -23
- package/internals/numeric-range-iterator.js +0 -111
- package/internals/object-assign.js +0 -58
- package/internals/object-create.js +0 -85
- package/internals/object-get-prototype-of.js +0 -22
- package/internals/object-iterator.js +0 -38
- package/internals/object-keys-internal.js +0 -21
- package/internals/object-keys.js +0 -10
- package/internals/reflect-metadata.js +0 -62
- package/internals/schedulers-fix.js +0 -31
- package/internals/set-difference.js +0 -26
- package/internals/set-intersection.js +0 -31
- package/internals/set-is-disjoint-from.js +0 -22
- package/internals/set-is-subset-of.js +0 -16
- package/internals/set-is-superset-of.js +0 -19
- package/internals/set-symmetric-difference.js +0 -23
- package/internals/set-union.js +0 -18
- package/internals/shared-key.js +0 -9
- package/internals/string-repeat.js +0 -18
- package/internals/symbol-is-registered.js +0 -17
- package/internals/symbol-is-well-known.js +0 -35
- package/internals/to-indexed-object.js +0 -8
- package/internals/to-set-like.js +0 -20
- package/internals/to-uint8-clamped.js +0 -15
- package/internals/v8-prototype-define-bug.js +0 -13
- package/internals/weak-map-basic-detection.js +0 -7
- package/modules/es.aggregate-error.js +0 -3
- package/modules/es.array.every.js +0 -14
- package/modules/es.array.for-each.js +0 -10
- package/modules/es.array.is-array.js +0 -9
- package/modules/es.array.some.js +0 -14
- package/modules/es.data-view.js +0 -3
- package/modules/es.date.get-year.js +0 -20
- package/modules/es.date.now.js +0 -15
- package/modules/es.date.set-year.js +0 -23
- package/modules/es.date.to-gmt-string.js +0 -8
- package/modules/es.date.to-iso-string.js +0 -10
- package/modules/es.date.to-string.js +0 -20
- package/modules/es.error.to-string.js +0 -11
- package/modules/es.escape.js +0 -43
- package/modules/es.function.bind.js +0 -11
- package/modules/es.map.js +0 -3
- package/modules/es.number.to-precision.js +0 -25
- package/modules/es.object.create.js +0 -11
- package/modules/es.object.define-properties.js +0 -11
- package/modules/es.object.define-property.js +0 -11
- package/modules/es.promise.js +0 -8
- package/modules/es.set.difference.v2.js +0 -37
- package/modules/es.set.intersection.v2.js +0 -18
- package/modules/es.set.is-disjoint-from.v2.js +0 -14
- package/modules/es.set.is-subset-of.v2.js +0 -14
- package/modules/es.set.is-superset-of.v2.js +0 -14
- package/modules/es.set.js +0 -3
- package/modules/es.set.symmetric-difference.v2.js +0 -13
- package/modules/es.set.union.v2.js +0 -13
- package/modules/es.string.at-alternative.js +0 -26
- package/modules/es.string.substr.js +0 -28
- package/modules/es.symbol.js +0 -7
- package/modules/es.unescape.js +0 -45
- package/modules/es.weak-map.js +0 -3
- package/modules/es.weak-set.js +0 -3
- package/modules/esnext.aggregate-error.js +0 -3
- package/modules/esnext.array-buffer.detached.js +0 -3
- package/modules/esnext.array-buffer.transfer-to-fixed-length.js +0 -3
- package/modules/esnext.array-buffer.transfer.js +0 -3
- package/modules/esnext.array.at.js +0 -3
- package/modules/esnext.array.filter-out.js +0 -15
- package/modules/esnext.array.find-last-index.js +0 -3
- package/modules/esnext.array.find-last.js +0 -3
- package/modules/esnext.array.from-async.js +0 -3
- package/modules/esnext.array.group-by-to-map.js +0 -16
- package/modules/esnext.array.group-by.js +0 -18
- package/modules/esnext.array.group-to-map.js +0 -13
- package/modules/esnext.array.group.js +0 -15
- package/modules/esnext.array.last-index.js +0 -22
- package/modules/esnext.array.last-item.js +0 -27
- package/modules/esnext.array.to-reversed.js +0 -3
- package/modules/esnext.array.to-sorted.js +0 -3
- package/modules/esnext.array.to-spliced.js +0 -3
- package/modules/esnext.array.with.js +0 -3
- package/modules/esnext.async-disposable-stack.constructor.js +0 -3
- package/modules/esnext.async-iterator.as-indexed-pairs.js +0 -10
- package/modules/esnext.async-iterator.async-dispose.js +0 -3
- package/modules/esnext.async-iterator.indexed.js +0 -10
- package/modules/esnext.bigint.range.js +0 -15
- package/modules/esnext.composite-key.js +0 -20
- package/modules/esnext.composite-symbol.js +0 -13
- package/modules/esnext.data-view.get-float16.js +0 -3
- package/modules/esnext.data-view.set-float16.js +0 -3
- package/modules/esnext.disposable-stack.constructor.js +0 -3
- package/modules/esnext.error.is-error.js +0 -3
- package/modules/esnext.function.is-callable.js +0 -30
- package/modules/esnext.function.is-constructor.js +0 -9
- package/modules/esnext.function.un-this.js +0 -10
- package/modules/esnext.global-this.js +0 -3
- package/modules/esnext.iterator.as-indexed-pairs.js +0 -10
- package/modules/esnext.iterator.concat.js +0 -3
- package/modules/esnext.iterator.constructor.js +0 -3
- package/modules/esnext.iterator.dispose.js +0 -3
- package/modules/esnext.iterator.drop.js +0 -3
- package/modules/esnext.iterator.every.js +0 -3
- package/modules/esnext.iterator.filter.js +0 -3
- package/modules/esnext.iterator.find.js +0 -3
- package/modules/esnext.iterator.flat-map.js +0 -3
- package/modules/esnext.iterator.for-each.js +0 -3
- package/modules/esnext.iterator.from.js +0 -3
- package/modules/esnext.iterator.indexed.js +0 -10
- package/modules/esnext.iterator.map.js +0 -3
- package/modules/esnext.iterator.reduce.js +0 -3
- package/modules/esnext.iterator.sliding.js +0 -11
- package/modules/esnext.iterator.some.js +0 -3
- package/modules/esnext.iterator.take.js +0 -3
- package/modules/esnext.iterator.to-array.js +0 -3
- package/modules/esnext.json.is-raw-json.js +0 -3
- package/modules/esnext.json.parse.js +0 -3
- package/modules/esnext.json.raw-json.js +0 -3
- package/modules/esnext.map.delete-all.js +0 -18
- package/modules/esnext.map.emplace.js +0 -27
- package/modules/esnext.map.every.js +0 -17
- package/modules/esnext.map.filter.js +0 -23
- package/modules/esnext.map.find-key.js +0 -18
- package/modules/esnext.map.find.js +0 -18
- package/modules/esnext.map.get-or-insert-computed.js +0 -3
- package/modules/esnext.map.get-or-insert.js +0 -3
- package/modules/esnext.map.group-by.js +0 -3
- package/modules/esnext.map.includes.js +0 -15
- package/modules/esnext.map.key-by.js +0 -22
- package/modules/esnext.map.key-of.js +0 -15
- package/modules/esnext.map.map-keys.js +0 -23
- package/modules/esnext.map.map-values.js +0 -23
- package/modules/esnext.map.merge.js +0 -22
- package/modules/esnext.map.reduce.js +0 -28
- package/modules/esnext.map.some.js +0 -17
- package/modules/esnext.map.update-or-insert.js +0 -10
- package/modules/esnext.map.update.js +0 -27
- package/modules/esnext.map.upsert.js +0 -10
- package/modules/esnext.math.clamp.js +0 -10
- package/modules/esnext.math.deg-per-rad.js +0 -8
- package/modules/esnext.math.degrees.js +0 -12
- package/modules/esnext.math.f16round.js +0 -3
- package/modules/esnext.math.fscale.js +0 -13
- package/modules/esnext.math.iaddh.js +0 -14
- package/modules/esnext.math.imulh.js +0 -19
- package/modules/esnext.math.isubh.js +0 -14
- package/modules/esnext.math.rad-per-deg.js +0 -8
- package/modules/esnext.math.radians.js +0 -12
- package/modules/esnext.math.scale.js +0 -9
- package/modules/esnext.math.seeded-prng.js +0 -36
- package/modules/esnext.math.signbit.js +0 -12
- package/modules/esnext.math.sum-precise.js +0 -3
- package/modules/esnext.math.umulh.js +0 -19
- package/modules/esnext.number.from-string.js +0 -68
- package/modules/esnext.number.range.js +0 -12
- package/modules/esnext.object.group-by.js +0 -3
- package/modules/esnext.object.has-own.js +0 -3
- package/modules/esnext.object.iterate-entries.js +0 -12
- package/modules/esnext.object.iterate-keys.js +0 -12
- package/modules/esnext.object.iterate-values.js +0 -12
- package/modules/esnext.observable.constructor.js +0 -187
- package/modules/esnext.observable.from.js +0 -38
- package/modules/esnext.observable.js +0 -5
- package/modules/esnext.observable.of.js +0 -24
- package/modules/esnext.promise.all-settled.js +0 -3
- package/modules/esnext.promise.any.js +0 -3
- package/modules/esnext.promise.try.js +0 -3
- package/modules/esnext.promise.with-resolvers.js +0 -3
- package/modules/esnext.reflect.define-metadata.js +0 -17
- package/modules/esnext.reflect.delete-metadata.js +0 -22
- package/modules/esnext.reflect.get-metadata-keys.js +0 -30
- package/modules/esnext.reflect.get-metadata.js +0 -26
- package/modules/esnext.reflect.get-own-metadata-keys.js +0 -17
- package/modules/esnext.reflect.get-own-metadata.js +0 -17
- package/modules/esnext.reflect.has-metadata.js +0 -25
- package/modules/esnext.reflect.has-own-metadata.js +0 -17
- package/modules/esnext.reflect.metadata.js +0 -17
- package/modules/esnext.regexp.escape.js +0 -3
- package/modules/esnext.set.add-all.js +0 -15
- package/modules/esnext.set.delete-all.js +0 -18
- package/modules/esnext.set.difference.js +0 -14
- package/modules/esnext.set.difference.v2.js +0 -3
- package/modules/esnext.set.every.js +0 -17
- package/modules/esnext.set.filter.js +0 -23
- package/modules/esnext.set.find.js +0 -18
- package/modules/esnext.set.intersection.js +0 -14
- package/modules/esnext.set.intersection.v2.js +0 -3
- package/modules/esnext.set.is-disjoint-from.js +0 -14
- package/modules/esnext.set.is-disjoint-from.v2.js +0 -3
- package/modules/esnext.set.is-subset-of.js +0 -14
- package/modules/esnext.set.is-subset-of.v2.js +0 -3
- package/modules/esnext.set.is-superset-of.js +0 -14
- package/modules/esnext.set.is-superset-of.v2.js +0 -3
- package/modules/esnext.set.join.js +0 -23
- package/modules/esnext.set.map.js +0 -23
- package/modules/esnext.set.reduce.js +0 -28
- package/modules/esnext.set.some.js +0 -17
- package/modules/esnext.set.symmetric-difference.js +0 -14
- package/modules/esnext.set.symmetric-difference.v2.js +0 -3
- package/modules/esnext.set.union.js +0 -14
- package/modules/esnext.set.union.v2.js +0 -3
- package/modules/esnext.string.at-alternative.js +0 -3
- package/modules/esnext.string.at.js +0 -19
- package/modules/esnext.string.code-points.js +0 -40
- package/modules/esnext.string.is-well-formed.js +0 -3
- package/modules/esnext.string.match-all.js +0 -3
- package/modules/esnext.string.replace-all.js +0 -3
- package/modules/esnext.string.to-well-formed.js +0 -3
- package/modules/esnext.suppressed-error.constructor.js +0 -3
- package/modules/esnext.symbol.async-dispose.js +0 -3
- package/modules/esnext.symbol.dispose.js +0 -3
- package/modules/esnext.symbol.is-registered.js +0 -9
- package/modules/esnext.symbol.is-well-known.js +0 -10
- package/modules/esnext.symbol.matcher.js +0 -6
- package/modules/esnext.symbol.metadata-key.js +0 -7
- package/modules/esnext.symbol.observable.js +0 -6
- package/modules/esnext.symbol.pattern-match.js +0 -7
- package/modules/esnext.symbol.replace-all.js +0 -5
- package/modules/esnext.typed-array.at.js +0 -3
- package/modules/esnext.typed-array.filter-out.js +0 -15
- package/modules/esnext.typed-array.find-last-index.js +0 -3
- package/modules/esnext.typed-array.find-last.js +0 -3
- package/modules/esnext.typed-array.from-async.js +0 -25
- package/modules/esnext.typed-array.group-by.js +0 -15
- package/modules/esnext.typed-array.to-reversed.js +0 -3
- package/modules/esnext.typed-array.to-sorted.js +0 -3
- package/modules/esnext.typed-array.to-spliced.js +0 -52
- package/modules/esnext.typed-array.with.js +0 -3
- package/modules/esnext.uint8-array.from-base64.js +0 -3
- package/modules/esnext.uint8-array.from-hex.js +0 -3
- package/modules/esnext.uint8-array.set-from-base64.js +0 -3
- package/modules/esnext.uint8-array.set-from-hex.js +0 -3
- package/modules/esnext.uint8-array.to-base64.js +0 -3
- package/modules/esnext.uint8-array.to-hex.js +0 -3
- package/modules/esnext.weak-map.delete-all.js +0 -18
- package/modules/esnext.weak-map.emplace.js +0 -27
- package/modules/esnext.weak-map.get-or-insert-computed.js +0 -3
- package/modules/esnext.weak-map.get-or-insert.js +0 -3
- package/modules/esnext.weak-map.upsert.js +0 -10
- package/modules/esnext.weak-set.add-all.js +0 -15
- package/modules/esnext.weak-set.delete-all.js +0 -18
- package/modules/web.immediate.js +0 -4
- package/modules/web.set-interval.js +0 -12
- package/modules/web.set-timeout.js +0 -12
- package/modules/web.timers.js +0 -4
- package/modules/web.url-search-params.js +0 -3
- package/modules/web.url.js +0 -3
- package/postinstall.js +0 -62
- package/proposals/array-filtering-stage-1.js +0 -4
- package/proposals/array-from-async-stage-2.js +0 -3
- package/proposals/array-grouping-stage-3-2.js +0 -4
- package/proposals/array-grouping-stage-3.js +0 -5
- package/proposals/array-grouping-v2.js +0 -4
- package/proposals/array-last.js +0 -4
- package/proposals/async-explicit-resource-management.js +0 -7
- package/proposals/change-array-by-copy-stage-4.js +0 -9
- package/proposals/collection-methods.js +0 -29
- package/proposals/decorator-metadata-v2.js +0 -4
- package/proposals/decorators.js +0 -4
- package/proposals/efficient-64-bit-arithmetic.js +0 -7
- package/proposals/function-is-callable-is-constructor.js +0 -4
- package/proposals/function-un-this.js +0 -4
- package/proposals/index.js +0 -3
- package/proposals/iterator-chunking-v2.js +0 -4
- package/proposals/iterator-helpers-stage-3-2.js +0 -15
- package/proposals/iterator-helpers-stage-3.js +0 -29
- package/proposals/keys-composition.js +0 -4
- package/proposals/map-update-or-insert.js +0 -4
- package/proposals/map-upsert-stage-2.js +0 -4
- package/proposals/map-upsert-v4.js +0 -6
- package/proposals/math-clamp-v2.js +0 -3
- package/proposals/math-extensions.js +0 -9
- package/proposals/math-signbit.js +0 -3
- package/proposals/number-from-string.js +0 -3
- package/proposals/number-range.js +0 -4
- package/proposals/object-iteration.js +0 -6
- package/proposals/observable.js +0 -4
- package/proposals/pattern-matching-v2.js +0 -3
- package/proposals/reflect-metadata.js +0 -11
- package/proposals/seeded-random.js +0 -3
- package/proposals/set-methods-v2.js +0 -9
- package/proposals/string-at.js +0 -3
- package/proposals/string-code-points.js +0 -3
- package/proposals/string-replace-all-stage-4.js +0 -3
- package/proposals/symbol-predicates-v2.js +0 -4
- package/proposals/url.js +0 -3
- package/proposals/using-statement.js +0 -5
- package/stable/README.md +0 -1
- package/stable/aggregate-error.js +0 -8
- package/stable/array/every.js +0 -4
- package/stable/array/for-each.js +0 -4
- package/stable/array/is-array.js +0 -4
- package/stable/array/some.js +0 -4
- package/stable/array/virtual/at.js +0 -4
- package/stable/array/virtual/concat.js +0 -4
- package/stable/array/virtual/copy-within.js +0 -4
- package/stable/array/virtual/entries.js +0 -4
- package/stable/array/virtual/every.js +0 -4
- package/stable/array/virtual/fill.js +0 -4
- package/stable/array/virtual/filter.js +0 -4
- package/stable/array/virtual/find-index.js +0 -4
- package/stable/array/virtual/find-last-index.js +0 -2
- package/stable/array/virtual/find-last.js +0 -2
- package/stable/array/virtual/find.js +0 -4
- package/stable/array/virtual/flat-map.js +0 -4
- package/stable/array/virtual/flat.js +0 -4
- package/stable/array/virtual/for-each.js +0 -4
- package/stable/array/virtual/includes.js +0 -4
- package/stable/array/virtual/index-of.js +0 -4
- package/stable/array/virtual/index.js +0 -4
- package/stable/array/virtual/iterator.js +0 -4
- package/stable/array/virtual/join.js +0 -4
- package/stable/array/virtual/keys.js +0 -4
- package/stable/array/virtual/last-index-of.js +0 -4
- package/stable/array/virtual/map.js +0 -4
- package/stable/array/virtual/push.js +0 -4
- package/stable/array/virtual/reduce-right.js +0 -4
- package/stable/array/virtual/reduce.js +0 -4
- package/stable/array/virtual/reverse.js +0 -4
- package/stable/array/virtual/slice.js +0 -4
- package/stable/array/virtual/some.js +0 -4
- package/stable/array/virtual/sort.js +0 -4
- package/stable/array/virtual/splice.js +0 -4
- package/stable/array/virtual/to-reversed.js +0 -4
- package/stable/array/virtual/to-sorted.js +0 -4
- package/stable/array/virtual/to-spliced.js +0 -4
- package/stable/array/virtual/unshift.js +0 -4
- package/stable/array/virtual/values.js +0 -4
- package/stable/array/virtual/with.js +0 -4
- package/stable/async-iterator/async-dispose.js +0 -2
- package/stable/date/get-year.js +0 -4
- package/stable/date/now.js +0 -4
- package/stable/date/set-year.js +0 -4
- package/stable/date/to-gmt-string.js +0 -4
- package/stable/date/to-iso-string.js +0 -4
- package/stable/date/to-primitive.js +0 -4
- package/stable/date/to-string.js +0 -4
- package/stable/dom-exception/to-string-tag.js +0 -4
- package/stable/error/to-string.js +0 -4
- package/stable/escape.js +0 -4
- package/stable/function/bind.js +0 -4
- package/stable/function/has-instance.js +0 -4
- package/stable/function/virtual/bind.js +0 -4
- package/stable/function/virtual/index.js +0 -4
- package/stable/instance/bind.js +0 -4
- package/stable/instance/every.js +0 -4
- package/stable/instance/some.js +0 -4
- package/stable/iterator/dispose.js +0 -4
- package/stable/json/to-string-tag.js +0 -4
- package/stable/math/to-string-tag.js +0 -4
- package/stable/number/to-precision.js +0 -4
- package/stable/number/virtual/index.js +0 -4
- package/stable/number/virtual/to-exponential.js +0 -4
- package/stable/number/virtual/to-fixed.js +0 -4
- package/stable/number/virtual/to-precision.js +0 -4
- package/stable/reflect/to-string-tag.js +0 -4
- package/stable/set-interval.js +0 -5
- package/stable/set-timeout.js +0 -5
- package/stable/string/substr.js +0 -4
- package/stable/string/virtual/anchor.js +0 -4
- package/stable/string/virtual/at.js +0 -4
- package/stable/string/virtual/big.js +0 -4
- package/stable/string/virtual/blink.js +0 -4
- package/stable/string/virtual/bold.js +0 -4
- package/stable/string/virtual/code-point-at.js +0 -4
- package/stable/string/virtual/ends-with.js +0 -4
- package/stable/string/virtual/fixed.js +0 -4
- package/stable/string/virtual/fontcolor.js +0 -4
- package/stable/string/virtual/fontsize.js +0 -4
- package/stable/string/virtual/includes.js +0 -4
- package/stable/string/virtual/index.js +0 -4
- package/stable/string/virtual/is-well-formed.js +0 -4
- package/stable/string/virtual/italics.js +0 -4
- package/stable/string/virtual/iterator.js +0 -4
- package/stable/string/virtual/link.js +0 -4
- package/stable/string/virtual/match-all.js +0 -4
- package/stable/string/virtual/pad-end.js +0 -4
- package/stable/string/virtual/pad-start.js +0 -4
- package/stable/string/virtual/repeat.js +0 -4
- package/stable/string/virtual/replace-all.js +0 -4
- package/stable/string/virtual/small.js +0 -4
- package/stable/string/virtual/starts-with.js +0 -4
- package/stable/string/virtual/strike.js +0 -4
- package/stable/string/virtual/sub.js +0 -4
- package/stable/string/virtual/substr.js +0 -4
- package/stable/string/virtual/sup.js +0 -4
- package/stable/string/virtual/to-well-formed.js +0 -4
- package/stable/string/virtual/trim-end.js +0 -4
- package/stable/string/virtual/trim-left.js +0 -4
- package/stable/string/virtual/trim-right.js +0 -4
- package/stable/string/virtual/trim-start.js +0 -4
- package/stable/string/virtual/trim.js +0 -4
- package/stable/suppressed-error.js +0 -4
- package/stable/typed-array/float32-array.js +0 -5
- package/stable/typed-array/float64-array.js +0 -5
- package/stable/typed-array/int16-array.js +0 -5
- package/stable/typed-array/int32-array.js +0 -5
- package/stable/typed-array/int8-array.js +0 -5
- package/stable/typed-array/uint16-array.js +0 -5
- package/stable/typed-array/uint32-array.js +0 -5
- package/stable/typed-array/uint8-array.js +0 -5
- package/stable/typed-array/uint8-clamped-array.js +0 -5
- package/stable/unescape.js +0 -4
- package/stage/4.js +0 -33
- package/stage/README.md +0 -1
- package/stage/index.js +0 -4
- package/stage/pre.js +0 -6
- package/web/README.md +0 -1
- package/web/dom-collections.js +0 -6
- package/web/dom-exception.js +0 -8
- package/web/immediate.js +0 -5
- package/web/index.js +0 -24
- package/web/queue-microtask.js +0 -5
- package/web/structured-clone.js +0 -9
- package/web/timers.js +0 -5
- package/web/url-search-params.js +0 -8
- package/web/url.js +0 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "core-js",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0-alpha.1",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "Standard library",
|
|
6
6
|
"keywords": [
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"type": "opencollective",
|
|
69
69
|
"url": "https://opencollective.com/core-js"
|
|
70
70
|
},
|
|
71
|
-
"license": "
|
|
71
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
72
72
|
"author": {
|
|
73
73
|
"name": "Denis Pushkarev",
|
|
74
74
|
"email": "zloirock@zloirock.ru",
|
|
@@ -76,7 +76,784 @@
|
|
|
76
76
|
},
|
|
77
77
|
"sideEffects": true,
|
|
78
78
|
"main": "index.js",
|
|
79
|
-
"
|
|
80
|
-
"
|
|
79
|
+
"exports": {
|
|
80
|
+
".": "./index.js",
|
|
81
|
+
"./package.json": "./package.json",
|
|
82
|
+
"./configurator": "./configurator.js",
|
|
83
|
+
"./configurator.js": "./configurator.js",
|
|
84
|
+
"./modules/*": "./modules/*.js",
|
|
85
|
+
"./modules/*.js": "./modules/*.js",
|
|
86
|
+
"./es/aggregate-error": "./es/aggregate-error/index.js",
|
|
87
|
+
"./es/aggregate-error/*": "./es/aggregate-error/*.js",
|
|
88
|
+
"./es/aggregate-error/*.js": "./es/aggregate-error/*.js",
|
|
89
|
+
"./stable/aggregate-error": "./stable/aggregate-error/index.js",
|
|
90
|
+
"./stable/aggregate-error/*": "./stable/aggregate-error/*.js",
|
|
91
|
+
"./stable/aggregate-error/*.js": "./stable/aggregate-error/*.js",
|
|
92
|
+
"./actual/aggregate-error": "./actual/aggregate-error/index.js",
|
|
93
|
+
"./actual/aggregate-error/*": "./actual/aggregate-error/*.js",
|
|
94
|
+
"./actual/aggregate-error/*.js": "./actual/aggregate-error/*.js",
|
|
95
|
+
"./full/aggregate-error": "./full/aggregate-error/index.js",
|
|
96
|
+
"./full/aggregate-error/*": "./full/aggregate-error/*.js",
|
|
97
|
+
"./full/aggregate-error/*.js": "./full/aggregate-error/*.js",
|
|
98
|
+
"./es/array": "./es/array/index.js",
|
|
99
|
+
"./es/array/*": "./es/array/*.js",
|
|
100
|
+
"./es/array/*.js": "./es/array/*.js",
|
|
101
|
+
"./stable/array": "./stable/array/index.js",
|
|
102
|
+
"./stable/array/*": "./stable/array/*.js",
|
|
103
|
+
"./stable/array/*.js": "./stable/array/*.js",
|
|
104
|
+
"./actual/array": "./actual/array/index.js",
|
|
105
|
+
"./actual/array/*": "./actual/array/*.js",
|
|
106
|
+
"./actual/array/*.js": "./actual/array/*.js",
|
|
107
|
+
"./full/array": "./full/array/index.js",
|
|
108
|
+
"./full/array/*": "./full/array/*.js",
|
|
109
|
+
"./full/array/*.js": "./full/array/*.js",
|
|
110
|
+
"./es/array-buffer": "./es/array-buffer/index.js",
|
|
111
|
+
"./es/array-buffer/*": "./es/array-buffer/*.js",
|
|
112
|
+
"./es/array-buffer/*.js": "./es/array-buffer/*.js",
|
|
113
|
+
"./stable/array-buffer": "./stable/array-buffer/index.js",
|
|
114
|
+
"./stable/array-buffer/*": "./stable/array-buffer/*.js",
|
|
115
|
+
"./stable/array-buffer/*.js": "./stable/array-buffer/*.js",
|
|
116
|
+
"./actual/array-buffer": "./actual/array-buffer/index.js",
|
|
117
|
+
"./actual/array-buffer/*": "./actual/array-buffer/*.js",
|
|
118
|
+
"./actual/array-buffer/*.js": "./actual/array-buffer/*.js",
|
|
119
|
+
"./full/array-buffer": "./full/array-buffer/index.js",
|
|
120
|
+
"./full/array-buffer/*": "./full/array-buffer/*.js",
|
|
121
|
+
"./full/array-buffer/*.js": "./full/array-buffer/*.js",
|
|
122
|
+
"./es/async-disposable-stack": "./es/async-disposable-stack/index.js",
|
|
123
|
+
"./es/async-disposable-stack/*": "./es/async-disposable-stack/*.js",
|
|
124
|
+
"./es/async-disposable-stack/*.js": "./es/async-disposable-stack/*.js",
|
|
125
|
+
"./stable/async-disposable-stack": "./stable/async-disposable-stack/index.js",
|
|
126
|
+
"./stable/async-disposable-stack/*": "./stable/async-disposable-stack/*.js",
|
|
127
|
+
"./stable/async-disposable-stack/*.js": "./stable/async-disposable-stack/*.js",
|
|
128
|
+
"./actual/async-disposable-stack": "./actual/async-disposable-stack/index.js",
|
|
129
|
+
"./actual/async-disposable-stack/*": "./actual/async-disposable-stack/*.js",
|
|
130
|
+
"./actual/async-disposable-stack/*.js": "./actual/async-disposable-stack/*.js",
|
|
131
|
+
"./full/async-disposable-stack": "./full/async-disposable-stack/index.js",
|
|
132
|
+
"./full/async-disposable-stack/*": "./full/async-disposable-stack/*.js",
|
|
133
|
+
"./full/async-disposable-stack/*.js": "./full/async-disposable-stack/*.js",
|
|
134
|
+
"./es/async-iterator": "./es/async-iterator/index.js",
|
|
135
|
+
"./es/async-iterator/*": "./es/async-iterator/*.js",
|
|
136
|
+
"./es/async-iterator/*.js": "./es/async-iterator/*.js",
|
|
137
|
+
"./stable/async-iterator": "./stable/async-iterator/index.js",
|
|
138
|
+
"./stable/async-iterator/*": "./stable/async-iterator/*.js",
|
|
139
|
+
"./stable/async-iterator/*.js": "./stable/async-iterator/*.js",
|
|
140
|
+
"./actual/async-iterator": "./actual/async-iterator/index.js",
|
|
141
|
+
"./actual/async-iterator/*": "./actual/async-iterator/*.js",
|
|
142
|
+
"./actual/async-iterator/*.js": "./actual/async-iterator/*.js",
|
|
143
|
+
"./full/async-iterator": "./full/async-iterator/index.js",
|
|
144
|
+
"./full/async-iterator/*": "./full/async-iterator/*.js",
|
|
145
|
+
"./full/async-iterator/*.js": "./full/async-iterator/*.js",
|
|
146
|
+
"./es/data-view": "./es/data-view/index.js",
|
|
147
|
+
"./es/data-view/*": "./es/data-view/*.js",
|
|
148
|
+
"./es/data-view/*.js": "./es/data-view/*.js",
|
|
149
|
+
"./stable/data-view": "./stable/data-view/index.js",
|
|
150
|
+
"./stable/data-view/*": "./stable/data-view/*.js",
|
|
151
|
+
"./stable/data-view/*.js": "./stable/data-view/*.js",
|
|
152
|
+
"./actual/data-view": "./actual/data-view/index.js",
|
|
153
|
+
"./actual/data-view/*": "./actual/data-view/*.js",
|
|
154
|
+
"./actual/data-view/*.js": "./actual/data-view/*.js",
|
|
155
|
+
"./full/data-view": "./full/data-view/index.js",
|
|
156
|
+
"./full/data-view/*": "./full/data-view/*.js",
|
|
157
|
+
"./full/data-view/*.js": "./full/data-view/*.js",
|
|
158
|
+
"./es/date": "./es/date/index.js",
|
|
159
|
+
"./es/date/*": "./es/date/*.js",
|
|
160
|
+
"./es/date/*.js": "./es/date/*.js",
|
|
161
|
+
"./stable/date": "./stable/date/index.js",
|
|
162
|
+
"./stable/date/*": "./stable/date/*.js",
|
|
163
|
+
"./stable/date/*.js": "./stable/date/*.js",
|
|
164
|
+
"./actual/date": "./actual/date/index.js",
|
|
165
|
+
"./actual/date/*": "./actual/date/*.js",
|
|
166
|
+
"./actual/date/*.js": "./actual/date/*.js",
|
|
167
|
+
"./full/date": "./full/date/index.js",
|
|
168
|
+
"./full/date/*": "./full/date/*.js",
|
|
169
|
+
"./full/date/*.js": "./full/date/*.js",
|
|
170
|
+
"./es/disposable-stack": "./es/disposable-stack/index.js",
|
|
171
|
+
"./es/disposable-stack/*": "./es/disposable-stack/*.js",
|
|
172
|
+
"./es/disposable-stack/*.js": "./es/disposable-stack/*.js",
|
|
173
|
+
"./stable/disposable-stack": "./stable/disposable-stack/index.js",
|
|
174
|
+
"./stable/disposable-stack/*": "./stable/disposable-stack/*.js",
|
|
175
|
+
"./stable/disposable-stack/*.js": "./stable/disposable-stack/*.js",
|
|
176
|
+
"./actual/disposable-stack": "./actual/disposable-stack/index.js",
|
|
177
|
+
"./actual/disposable-stack/*": "./actual/disposable-stack/*.js",
|
|
178
|
+
"./actual/disposable-stack/*.js": "./actual/disposable-stack/*.js",
|
|
179
|
+
"./full/disposable-stack": "./full/disposable-stack/index.js",
|
|
180
|
+
"./full/disposable-stack/*": "./full/disposable-stack/*.js",
|
|
181
|
+
"./full/disposable-stack/*.js": "./full/disposable-stack/*.js",
|
|
182
|
+
"./stable/dom-collections": "./stable/dom-collections/index.js",
|
|
183
|
+
"./stable/dom-collections/*": "./stable/dom-collections/*.js",
|
|
184
|
+
"./stable/dom-collections/*.js": "./stable/dom-collections/*.js",
|
|
185
|
+
"./actual/dom-collections": "./actual/dom-collections/index.js",
|
|
186
|
+
"./actual/dom-collections/*": "./actual/dom-collections/*.js",
|
|
187
|
+
"./actual/dom-collections/*.js": "./actual/dom-collections/*.js",
|
|
188
|
+
"./full/dom-collections": "./full/dom-collections/index.js",
|
|
189
|
+
"./full/dom-collections/*": "./full/dom-collections/*.js",
|
|
190
|
+
"./full/dom-collections/*.js": "./full/dom-collections/*.js",
|
|
191
|
+
"./stable/dom-exception": "./stable/dom-exception/index.js",
|
|
192
|
+
"./stable/dom-exception/*": "./stable/dom-exception/*.js",
|
|
193
|
+
"./stable/dom-exception/*.js": "./stable/dom-exception/*.js",
|
|
194
|
+
"./actual/dom-exception": "./actual/dom-exception/index.js",
|
|
195
|
+
"./actual/dom-exception/*": "./actual/dom-exception/*.js",
|
|
196
|
+
"./actual/dom-exception/*.js": "./actual/dom-exception/*.js",
|
|
197
|
+
"./full/dom-exception": "./full/dom-exception/index.js",
|
|
198
|
+
"./full/dom-exception/*": "./full/dom-exception/*.js",
|
|
199
|
+
"./full/dom-exception/*.js": "./full/dom-exception/*.js",
|
|
200
|
+
"./es/error": "./es/error/index.js",
|
|
201
|
+
"./es/error/*": "./es/error/*.js",
|
|
202
|
+
"./es/error/*.js": "./es/error/*.js",
|
|
203
|
+
"./stable/error": "./stable/error/index.js",
|
|
204
|
+
"./stable/error/*": "./stable/error/*.js",
|
|
205
|
+
"./stable/error/*.js": "./stable/error/*.js",
|
|
206
|
+
"./actual/error": "./actual/error/index.js",
|
|
207
|
+
"./actual/error/*": "./actual/error/*.js",
|
|
208
|
+
"./actual/error/*.js": "./actual/error/*.js",
|
|
209
|
+
"./full/error": "./full/error/index.js",
|
|
210
|
+
"./full/error/*": "./full/error/*.js",
|
|
211
|
+
"./full/error/*.js": "./full/error/*.js",
|
|
212
|
+
"./es/eval-error": "./es/eval-error/index.js",
|
|
213
|
+
"./es/eval-error/*": "./es/eval-error/*.js",
|
|
214
|
+
"./es/eval-error/*.js": "./es/eval-error/*.js",
|
|
215
|
+
"./stable/eval-error": "./stable/eval-error/index.js",
|
|
216
|
+
"./stable/eval-error/*": "./stable/eval-error/*.js",
|
|
217
|
+
"./stable/eval-error/*.js": "./stable/eval-error/*.js",
|
|
218
|
+
"./actual/eval-error": "./actual/eval-error/index.js",
|
|
219
|
+
"./actual/eval-error/*": "./actual/eval-error/*.js",
|
|
220
|
+
"./actual/eval-error/*.js": "./actual/eval-error/*.js",
|
|
221
|
+
"./full/eval-error": "./full/eval-error/index.js",
|
|
222
|
+
"./full/eval-error/*": "./full/eval-error/*.js",
|
|
223
|
+
"./full/eval-error/*.js": "./full/eval-error/*.js",
|
|
224
|
+
"./es/function": "./es/function/index.js",
|
|
225
|
+
"./es/function/*": "./es/function/*.js",
|
|
226
|
+
"./es/function/*.js": "./es/function/*.js",
|
|
227
|
+
"./stable/function": "./stable/function/index.js",
|
|
228
|
+
"./stable/function/*": "./stable/function/*.js",
|
|
229
|
+
"./stable/function/*.js": "./stable/function/*.js",
|
|
230
|
+
"./actual/function": "./actual/function/index.js",
|
|
231
|
+
"./actual/function/*": "./actual/function/*.js",
|
|
232
|
+
"./actual/function/*.js": "./actual/function/*.js",
|
|
233
|
+
"./full/function": "./full/function/index.js",
|
|
234
|
+
"./full/function/*": "./full/function/*.js",
|
|
235
|
+
"./full/function/*.js": "./full/function/*.js",
|
|
236
|
+
"./es/instance/*": "./es/instance/*.js",
|
|
237
|
+
"./es/instance/*.js": "./es/instance/*.js",
|
|
238
|
+
"./stable/instance/*": "./stable/instance/*.js",
|
|
239
|
+
"./stable/instance/*.js": "./stable/instance/*.js",
|
|
240
|
+
"./actual/instance/*": "./actual/instance/*.js",
|
|
241
|
+
"./actual/instance/*.js": "./actual/instance/*.js",
|
|
242
|
+
"./full/instance/*": "./full/instance/*.js",
|
|
243
|
+
"./full/instance/*.js": "./full/instance/*.js",
|
|
244
|
+
"./es/iterator": "./es/iterator/index.js",
|
|
245
|
+
"./es/iterator/*": "./es/iterator/*.js",
|
|
246
|
+
"./es/iterator/*.js": "./es/iterator/*.js",
|
|
247
|
+
"./stable/iterator": "./stable/iterator/index.js",
|
|
248
|
+
"./stable/iterator/*": "./stable/iterator/*.js",
|
|
249
|
+
"./stable/iterator/*.js": "./stable/iterator/*.js",
|
|
250
|
+
"./actual/iterator": "./actual/iterator/index.js",
|
|
251
|
+
"./actual/iterator/*": "./actual/iterator/*.js",
|
|
252
|
+
"./actual/iterator/*.js": "./actual/iterator/*.js",
|
|
253
|
+
"./full/iterator": "./full/iterator/index.js",
|
|
254
|
+
"./full/iterator/*": "./full/iterator/*.js",
|
|
255
|
+
"./full/iterator/*.js": "./full/iterator/*.js",
|
|
256
|
+
"./es/json": "./es/json/index.js",
|
|
257
|
+
"./es/json/*": "./es/json/*.js",
|
|
258
|
+
"./es/json/*.js": "./es/json/*.js",
|
|
259
|
+
"./stable/json": "./stable/json/index.js",
|
|
260
|
+
"./stable/json/*": "./stable/json/*.js",
|
|
261
|
+
"./stable/json/*.js": "./stable/json/*.js",
|
|
262
|
+
"./actual/json": "./actual/json/index.js",
|
|
263
|
+
"./actual/json/*": "./actual/json/*.js",
|
|
264
|
+
"./actual/json/*.js": "./actual/json/*.js",
|
|
265
|
+
"./full/json": "./full/json/index.js",
|
|
266
|
+
"./full/json/*": "./full/json/*.js",
|
|
267
|
+
"./full/json/*.js": "./full/json/*.js",
|
|
268
|
+
"./es/map": "./es/map/index.js",
|
|
269
|
+
"./es/map/*": "./es/map/*.js",
|
|
270
|
+
"./es/map/*.js": "./es/map/*.js",
|
|
271
|
+
"./stable/map": "./stable/map/index.js",
|
|
272
|
+
"./stable/map/*": "./stable/map/*.js",
|
|
273
|
+
"./stable/map/*.js": "./stable/map/*.js",
|
|
274
|
+
"./actual/map": "./actual/map/index.js",
|
|
275
|
+
"./actual/map/*": "./actual/map/*.js",
|
|
276
|
+
"./actual/map/*.js": "./actual/map/*.js",
|
|
277
|
+
"./full/map": "./full/map/index.js",
|
|
278
|
+
"./full/map/*": "./full/map/*.js",
|
|
279
|
+
"./full/map/*.js": "./full/map/*.js",
|
|
280
|
+
"./es/math": "./es/math/index.js",
|
|
281
|
+
"./es/math/*": "./es/math/*.js",
|
|
282
|
+
"./es/math/*.js": "./es/math/*.js",
|
|
283
|
+
"./stable/math": "./stable/math/index.js",
|
|
284
|
+
"./stable/math/*": "./stable/math/*.js",
|
|
285
|
+
"./stable/math/*.js": "./stable/math/*.js",
|
|
286
|
+
"./actual/math": "./actual/math/index.js",
|
|
287
|
+
"./actual/math/*": "./actual/math/*.js",
|
|
288
|
+
"./actual/math/*.js": "./actual/math/*.js",
|
|
289
|
+
"./full/math": "./full/math/index.js",
|
|
290
|
+
"./full/math/*": "./full/math/*.js",
|
|
291
|
+
"./full/math/*.js": "./full/math/*.js",
|
|
292
|
+
"./es/number": "./es/number/index.js",
|
|
293
|
+
"./es/number/*": "./es/number/*.js",
|
|
294
|
+
"./es/number/*.js": "./es/number/*.js",
|
|
295
|
+
"./stable/number": "./stable/number/index.js",
|
|
296
|
+
"./stable/number/*": "./stable/number/*.js",
|
|
297
|
+
"./stable/number/*.js": "./stable/number/*.js",
|
|
298
|
+
"./actual/number": "./actual/number/index.js",
|
|
299
|
+
"./actual/number/*": "./actual/number/*.js",
|
|
300
|
+
"./actual/number/*.js": "./actual/number/*.js",
|
|
301
|
+
"./full/number": "./full/number/index.js",
|
|
302
|
+
"./full/number/*": "./full/number/*.js",
|
|
303
|
+
"./full/number/*.js": "./full/number/*.js",
|
|
304
|
+
"./es/object": "./es/object/index.js",
|
|
305
|
+
"./es/object/*": "./es/object/*.js",
|
|
306
|
+
"./es/object/*.js": "./es/object/*.js",
|
|
307
|
+
"./stable/object": "./stable/object/index.js",
|
|
308
|
+
"./stable/object/*": "./stable/object/*.js",
|
|
309
|
+
"./stable/object/*.js": "./stable/object/*.js",
|
|
310
|
+
"./actual/object": "./actual/object/index.js",
|
|
311
|
+
"./actual/object/*": "./actual/object/*.js",
|
|
312
|
+
"./actual/object/*.js": "./actual/object/*.js",
|
|
313
|
+
"./full/object": "./full/object/index.js",
|
|
314
|
+
"./full/object/*": "./full/object/*.js",
|
|
315
|
+
"./full/object/*.js": "./full/object/*.js",
|
|
316
|
+
"./es/promise": "./es/promise/index.js",
|
|
317
|
+
"./es/promise/*": "./es/promise/*.js",
|
|
318
|
+
"./es/promise/*.js": "./es/promise/*.js",
|
|
319
|
+
"./stable/promise": "./stable/promise/index.js",
|
|
320
|
+
"./stable/promise/*": "./stable/promise/*.js",
|
|
321
|
+
"./stable/promise/*.js": "./stable/promise/*.js",
|
|
322
|
+
"./actual/promise": "./actual/promise/index.js",
|
|
323
|
+
"./actual/promise/*": "./actual/promise/*.js",
|
|
324
|
+
"./actual/promise/*.js": "./actual/promise/*.js",
|
|
325
|
+
"./full/promise": "./full/promise/index.js",
|
|
326
|
+
"./full/promise/*": "./full/promise/*.js",
|
|
327
|
+
"./full/promise/*.js": "./full/promise/*.js",
|
|
328
|
+
"./es/range-error": "./es/range-error/index.js",
|
|
329
|
+
"./es/range-error/*": "./es/range-error/*.js",
|
|
330
|
+
"./es/range-error/*.js": "./es/range-error/*.js",
|
|
331
|
+
"./stable/range-error": "./stable/range-error/index.js",
|
|
332
|
+
"./stable/range-error/*": "./stable/range-error/*.js",
|
|
333
|
+
"./stable/range-error/*.js": "./stable/range-error/*.js",
|
|
334
|
+
"./actual/range-error": "./actual/range-error/index.js",
|
|
335
|
+
"./actual/range-error/*": "./actual/range-error/*.js",
|
|
336
|
+
"./actual/range-error/*.js": "./actual/range-error/*.js",
|
|
337
|
+
"./full/range-error": "./full/range-error/index.js",
|
|
338
|
+
"./full/range-error/*": "./full/range-error/*.js",
|
|
339
|
+
"./full/range-error/*.js": "./full/range-error/*.js",
|
|
340
|
+
"./es/reference-error": "./es/reference-error/index.js",
|
|
341
|
+
"./es/reference-error/*": "./es/reference-error/*.js",
|
|
342
|
+
"./es/reference-error/*.js": "./es/reference-error/*.js",
|
|
343
|
+
"./stable/reference-error": "./stable/reference-error/index.js",
|
|
344
|
+
"./stable/reference-error/*": "./stable/reference-error/*.js",
|
|
345
|
+
"./stable/reference-error/*.js": "./stable/reference-error/*.js",
|
|
346
|
+
"./actual/reference-error": "./actual/reference-error/index.js",
|
|
347
|
+
"./actual/reference-error/*": "./actual/reference-error/*.js",
|
|
348
|
+
"./actual/reference-error/*.js": "./actual/reference-error/*.js",
|
|
349
|
+
"./full/reference-error": "./full/reference-error/index.js",
|
|
350
|
+
"./full/reference-error/*": "./full/reference-error/*.js",
|
|
351
|
+
"./full/reference-error/*.js": "./full/reference-error/*.js",
|
|
352
|
+
"./es/reflect": "./es/reflect/index.js",
|
|
353
|
+
"./es/reflect/*": "./es/reflect/*.js",
|
|
354
|
+
"./es/reflect/*.js": "./es/reflect/*.js",
|
|
355
|
+
"./stable/reflect": "./stable/reflect/index.js",
|
|
356
|
+
"./stable/reflect/*": "./stable/reflect/*.js",
|
|
357
|
+
"./stable/reflect/*.js": "./stable/reflect/*.js",
|
|
358
|
+
"./actual/reflect": "./actual/reflect/index.js",
|
|
359
|
+
"./actual/reflect/*": "./actual/reflect/*.js",
|
|
360
|
+
"./actual/reflect/*.js": "./actual/reflect/*.js",
|
|
361
|
+
"./full/reflect": "./full/reflect/index.js",
|
|
362
|
+
"./full/reflect/*": "./full/reflect/*.js",
|
|
363
|
+
"./full/reflect/*.js": "./full/reflect/*.js",
|
|
364
|
+
"./es/regexp": "./es/regexp/index.js",
|
|
365
|
+
"./es/regexp/*": "./es/regexp/*.js",
|
|
366
|
+
"./es/regexp/*.js": "./es/regexp/*.js",
|
|
367
|
+
"./stable/regexp": "./stable/regexp/index.js",
|
|
368
|
+
"./stable/regexp/*": "./stable/regexp/*.js",
|
|
369
|
+
"./stable/regexp/*.js": "./stable/regexp/*.js",
|
|
370
|
+
"./actual/regexp": "./actual/regexp/index.js",
|
|
371
|
+
"./actual/regexp/*": "./actual/regexp/*.js",
|
|
372
|
+
"./actual/regexp/*.js": "./actual/regexp/*.js",
|
|
373
|
+
"./full/regexp": "./full/regexp/index.js",
|
|
374
|
+
"./full/regexp/*": "./full/regexp/*.js",
|
|
375
|
+
"./full/regexp/*.js": "./full/regexp/*.js",
|
|
376
|
+
"./es/set": "./es/set/index.js",
|
|
377
|
+
"./es/set/*": "./es/set/*.js",
|
|
378
|
+
"./es/set/*.js": "./es/set/*.js",
|
|
379
|
+
"./stable/set": "./stable/set/index.js",
|
|
380
|
+
"./stable/set/*": "./stable/set/*.js",
|
|
381
|
+
"./stable/set/*.js": "./stable/set/*.js",
|
|
382
|
+
"./actual/set": "./actual/set/index.js",
|
|
383
|
+
"./actual/set/*": "./actual/set/*.js",
|
|
384
|
+
"./actual/set/*.js": "./actual/set/*.js",
|
|
385
|
+
"./full/set": "./full/set/index.js",
|
|
386
|
+
"./full/set/*": "./full/set/*.js",
|
|
387
|
+
"./full/set/*.js": "./full/set/*.js",
|
|
388
|
+
"./es/string": "./es/string/index.js",
|
|
389
|
+
"./es/string/*": "./es/string/*.js",
|
|
390
|
+
"./es/string/*.js": "./es/string/*.js",
|
|
391
|
+
"./stable/string": "./stable/string/index.js",
|
|
392
|
+
"./stable/string/*": "./stable/string/*.js",
|
|
393
|
+
"./stable/string/*.js": "./stable/string/*.js",
|
|
394
|
+
"./actual/string": "./actual/string/index.js",
|
|
395
|
+
"./actual/string/*": "./actual/string/*.js",
|
|
396
|
+
"./actual/string/*.js": "./actual/string/*.js",
|
|
397
|
+
"./full/string": "./full/string/index.js",
|
|
398
|
+
"./full/string/*": "./full/string/*.js",
|
|
399
|
+
"./full/string/*.js": "./full/string/*.js",
|
|
400
|
+
"./es/syntax-error": "./es/syntax-error/index.js",
|
|
401
|
+
"./es/syntax-error/*": "./es/syntax-error/*.js",
|
|
402
|
+
"./es/syntax-error/*.js": "./es/syntax-error/*.js",
|
|
403
|
+
"./stable/syntax-error": "./stable/syntax-error/index.js",
|
|
404
|
+
"./stable/syntax-error/*": "./stable/syntax-error/*.js",
|
|
405
|
+
"./stable/syntax-error/*.js": "./stable/syntax-error/*.js",
|
|
406
|
+
"./actual/syntax-error": "./actual/syntax-error/index.js",
|
|
407
|
+
"./actual/syntax-error/*": "./actual/syntax-error/*.js",
|
|
408
|
+
"./actual/syntax-error/*.js": "./actual/syntax-error/*.js",
|
|
409
|
+
"./full/syntax-error": "./full/syntax-error/index.js",
|
|
410
|
+
"./full/syntax-error/*": "./full/syntax-error/*.js",
|
|
411
|
+
"./full/syntax-error/*.js": "./full/syntax-error/*.js",
|
|
412
|
+
"./es/suppressed-error": "./es/suppressed-error/index.js",
|
|
413
|
+
"./es/suppressed-error/*": "./es/suppressed-error/*.js",
|
|
414
|
+
"./es/suppressed-error/*.js": "./es/suppressed-error/*.js",
|
|
415
|
+
"./stable/suppressed-error": "./stable/suppressed-error/index.js",
|
|
416
|
+
"./stable/suppressed-error/*": "./stable/suppressed-error/*.js",
|
|
417
|
+
"./stable/suppressed-error/*.js": "./stable/suppressed-error/*.js",
|
|
418
|
+
"./actual/suppressed-error": "./actual/suppressed-error/index.js",
|
|
419
|
+
"./actual/suppressed-error/*": "./actual/suppressed-error/*.js",
|
|
420
|
+
"./actual/suppressed-error/*.js": "./actual/suppressed-error/*.js",
|
|
421
|
+
"./full/suppressed-error": "./full/suppressed-error/index.js",
|
|
422
|
+
"./full/suppressed-error/*": "./full/suppressed-error/*.js",
|
|
423
|
+
"./full/suppressed-error/*.js": "./full/suppressed-error/*.js",
|
|
424
|
+
"./es/symbol": "./es/symbol/index.js",
|
|
425
|
+
"./es/symbol/*": "./es/symbol/*.js",
|
|
426
|
+
"./es/symbol/*.js": "./es/symbol/*.js",
|
|
427
|
+
"./stable/symbol": "./stable/symbol/index.js",
|
|
428
|
+
"./stable/symbol/*": "./stable/symbol/*.js",
|
|
429
|
+
"./stable/symbol/*.js": "./stable/symbol/*.js",
|
|
430
|
+
"./actual/symbol": "./actual/symbol/index.js",
|
|
431
|
+
"./actual/symbol/*": "./actual/symbol/*.js",
|
|
432
|
+
"./actual/symbol/*.js": "./actual/symbol/*.js",
|
|
433
|
+
"./full/symbol": "./full/symbol/index.js",
|
|
434
|
+
"./full/symbol/*": "./full/symbol/*.js",
|
|
435
|
+
"./full/symbol/*.js": "./full/symbol/*.js",
|
|
436
|
+
"./es/type-error": "./es/type-error/index.js",
|
|
437
|
+
"./es/type-error/*": "./es/type-error/*.js",
|
|
438
|
+
"./es/type-error/*.js": "./es/type-error/*.js",
|
|
439
|
+
"./stable/type-error": "./stable/type-error/index.js",
|
|
440
|
+
"./stable/type-error/*": "./stable/type-error/*.js",
|
|
441
|
+
"./stable/type-error/*.js": "./stable/type-error/*.js",
|
|
442
|
+
"./actual/type-error": "./actual/type-error/index.js",
|
|
443
|
+
"./actual/type-error/*": "./actual/type-error/*.js",
|
|
444
|
+
"./actual/type-error/*.js": "./actual/type-error/*.js",
|
|
445
|
+
"./full/type-error": "./full/type-error/index.js",
|
|
446
|
+
"./full/type-error/*": "./full/type-error/*.js",
|
|
447
|
+
"./full/type-error/*.js": "./full/type-error/*.js",
|
|
448
|
+
"./es/float32-array": "./es/float32-array/index.js",
|
|
449
|
+
"./es/float32-array/*": "./es/float32-array/*.js",
|
|
450
|
+
"./es/float32-array/*.js": "./es/float32-array/*.js",
|
|
451
|
+
"./stable/float32-array": "./stable/float32-array/index.js",
|
|
452
|
+
"./stable/float32-array/*": "./stable/float32-array/*.js",
|
|
453
|
+
"./stable/float32-array/*.js": "./stable/float32-array/*.js",
|
|
454
|
+
"./actual/float32-array": "./actual/float32-array/index.js",
|
|
455
|
+
"./actual/float32-array/*": "./actual/float32-array/*.js",
|
|
456
|
+
"./actual/float32-array/*.js": "./actual/float32-array/*.js",
|
|
457
|
+
"./full/float32-array": "./full/float32-array/index.js",
|
|
458
|
+
"./full/float32-array/*": "./full/float32-array/*.js",
|
|
459
|
+
"./full/float32-array/*.js": "./full/float32-array/*.js",
|
|
460
|
+
"./es/float64-array": "./es/float64-array/index.js",
|
|
461
|
+
"./es/float64-array/*": "./es/float64-array/*.js",
|
|
462
|
+
"./es/float64-array/*.js": "./es/float64-array/*.js",
|
|
463
|
+
"./stable/float64-array": "./stable/float64-array/index.js",
|
|
464
|
+
"./stable/float64-array/*": "./stable/float64-array/*.js",
|
|
465
|
+
"./stable/float64-array/*.js": "./stable/float64-array/*.js",
|
|
466
|
+
"./actual/float64-array": "./actual/float64-array/index.js",
|
|
467
|
+
"./actual/float64-array/*": "./actual/float64-array/*.js",
|
|
468
|
+
"./actual/float64-array/*.js": "./actual/float64-array/*.js",
|
|
469
|
+
"./full/float64-array": "./full/float64-array/index.js",
|
|
470
|
+
"./full/float64-array/*": "./full/float64-array/*.js",
|
|
471
|
+
"./full/float64-array/*.js": "./full/float64-array/*.js",
|
|
472
|
+
"./es/int8-array": "./es/int8-array/index.js",
|
|
473
|
+
"./es/int8-array/*": "./es/int8-array/*.js",
|
|
474
|
+
"./es/int8-array/*.js": "./es/int8-array/*.js",
|
|
475
|
+
"./stable/int8-array": "./stable/int8-array/index.js",
|
|
476
|
+
"./stable/int8-array/*": "./stable/int8-array/*.js",
|
|
477
|
+
"./stable/int8-array/*.js": "./stable/int8-array/*.js",
|
|
478
|
+
"./actual/int8-array": "./actual/int8-array/index.js",
|
|
479
|
+
"./actual/int8-array/*": "./actual/int8-array/*.js",
|
|
480
|
+
"./actual/int8-array/*.js": "./actual/int8-array/*.js",
|
|
481
|
+
"./full/int8-array": "./full/int8-array/index.js",
|
|
482
|
+
"./full/int8-array/*": "./full/int8-array/*.js",
|
|
483
|
+
"./full/int8-array/*.js": "./full/int8-array/*.js",
|
|
484
|
+
"./es/int16-array": "./es/int16-array/index.js",
|
|
485
|
+
"./es/int16-array/*": "./es/int16-array/*.js",
|
|
486
|
+
"./es/int16-array/*.js": "./es/int16-array/*.js",
|
|
487
|
+
"./stable/int16-array": "./stable/int16-array/index.js",
|
|
488
|
+
"./stable/int16-array/*": "./stable/int16-array/*.js",
|
|
489
|
+
"./stable/int16-array/*.js": "./stable/int16-array/*.js",
|
|
490
|
+
"./actual/int16-array": "./actual/int16-array/index.js",
|
|
491
|
+
"./actual/int16-array/*": "./actual/int16-array/*.js",
|
|
492
|
+
"./actual/int16-array/*.js": "./actual/int16-array/*.js",
|
|
493
|
+
"./full/int16-array": "./full/int16-array/index.js",
|
|
494
|
+
"./full/int16-array/*": "./full/int16-array/*.js",
|
|
495
|
+
"./full/int16-array/*.js": "./full/int16-array/*.js",
|
|
496
|
+
"./es/int32-array": "./es/int32-array/index.js",
|
|
497
|
+
"./es/int32-array/*": "./es/int32-array/*.js",
|
|
498
|
+
"./es/int32-array/*.js": "./es/int32-array/*.js",
|
|
499
|
+
"./stable/int32-array": "./stable/int32-array/index.js",
|
|
500
|
+
"./stable/int32-array/*": "./stable/int32-array/*.js",
|
|
501
|
+
"./stable/int32-array/*.js": "./stable/int32-array/*.js",
|
|
502
|
+
"./actual/int32-array": "./actual/int32-array/index.js",
|
|
503
|
+
"./actual/int32-array/*": "./actual/int32-array/*.js",
|
|
504
|
+
"./actual/int32-array/*.js": "./actual/int32-array/*.js",
|
|
505
|
+
"./full/int32-array": "./full/int32-array/index.js",
|
|
506
|
+
"./full/int32-array/*": "./full/int32-array/*.js",
|
|
507
|
+
"./full/int32-array/*.js": "./full/int32-array/*.js",
|
|
508
|
+
"./es/uint8-array": "./es/uint8-array/index.js",
|
|
509
|
+
"./es/uint8-array/*": "./es/uint8-array/*.js",
|
|
510
|
+
"./es/uint8-array/*.js": "./es/uint8-array/*.js",
|
|
511
|
+
"./stable/uint8-array": "./stable/uint8-array/index.js",
|
|
512
|
+
"./stable/uint8-array/*": "./stable/uint8-array/*.js",
|
|
513
|
+
"./stable/uint8-array/*.js": "./stable/uint8-array/*.js",
|
|
514
|
+
"./actual/uint8-array": "./actual/uint8-array/index.js",
|
|
515
|
+
"./actual/uint8-array/*": "./actual/uint8-array/*.js",
|
|
516
|
+
"./actual/uint8-array/*.js": "./actual/uint8-array/*.js",
|
|
517
|
+
"./full/uint8-array": "./full/uint8-array/index.js",
|
|
518
|
+
"./full/uint8-array/*": "./full/uint8-array/*.js",
|
|
519
|
+
"./full/uint8-array/*.js": "./full/uint8-array/*.js",
|
|
520
|
+
"./es/uint8-clamped-array": "./es/uint8-clamped-array/index.js",
|
|
521
|
+
"./es/uint8-clamped-array/*": "./es/uint8-clamped-array/*.js",
|
|
522
|
+
"./es/uint8-clamped-array/*.js": "./es/uint8-clamped-array/*.js",
|
|
523
|
+
"./stable/uint8-clamped-array": "./stable/uint8-clamped-array/index.js",
|
|
524
|
+
"./stable/uint8-clamped-array/*": "./stable/uint8-clamped-array/*.js",
|
|
525
|
+
"./stable/uint8-clamped-array/*.js": "./stable/uint8-clamped-array/*.js",
|
|
526
|
+
"./actual/uint8-clamped-array": "./actual/uint8-clamped-array/index.js",
|
|
527
|
+
"./actual/uint8-clamped-array/*": "./actual/uint8-clamped-array/*.js",
|
|
528
|
+
"./actual/uint8-clamped-array/*.js": "./actual/uint8-clamped-array/*.js",
|
|
529
|
+
"./full/uint8-clamped-array": "./full/uint8-clamped-array/index.js",
|
|
530
|
+
"./full/uint8-clamped-array/*": "./full/uint8-clamped-array/*.js",
|
|
531
|
+
"./full/uint8-clamped-array/*.js": "./full/uint8-clamped-array/*.js",
|
|
532
|
+
"./es/uint16-array": "./es/uint16-array/index.js",
|
|
533
|
+
"./es/uint16-array/*": "./es/uint16-array/*.js",
|
|
534
|
+
"./es/uint16-array/*.js": "./es/uint16-array/*.js",
|
|
535
|
+
"./stable/uint16-array": "./stable/uint16-array/index.js",
|
|
536
|
+
"./stable/uint16-array/*": "./stable/uint16-array/*.js",
|
|
537
|
+
"./stable/uint16-array/*.js": "./stable/uint16-array/*.js",
|
|
538
|
+
"./actual/uint16-array": "./actual/uint16-array/index.js",
|
|
539
|
+
"./actual/uint16-array/*": "./actual/uint16-array/*.js",
|
|
540
|
+
"./actual/uint16-array/*.js": "./actual/uint16-array/*.js",
|
|
541
|
+
"./full/uint16-array": "./full/uint16-array/index.js",
|
|
542
|
+
"./full/uint16-array/*": "./full/uint16-array/*.js",
|
|
543
|
+
"./full/uint16-array/*.js": "./full/uint16-array/*.js",
|
|
544
|
+
"./es/uint32-array": "./es/uint32-array/index.js",
|
|
545
|
+
"./es/uint32-array/*": "./es/uint32-array/*.js",
|
|
546
|
+
"./es/uint32-array/*.js": "./es/uint32-array/*.js",
|
|
547
|
+
"./stable/uint32-array": "./stable/uint32-array/index.js",
|
|
548
|
+
"./stable/uint32-array/*": "./stable/uint32-array/*.js",
|
|
549
|
+
"./stable/uint32-array/*.js": "./stable/uint32-array/*.js",
|
|
550
|
+
"./actual/uint32-array": "./actual/uint32-array/index.js",
|
|
551
|
+
"./actual/uint32-array/*": "./actual/uint32-array/*.js",
|
|
552
|
+
"./actual/uint32-array/*.js": "./actual/uint32-array/*.js",
|
|
553
|
+
"./full/uint32-array": "./full/uint32-array/index.js",
|
|
554
|
+
"./full/uint32-array/*": "./full/uint32-array/*.js",
|
|
555
|
+
"./full/uint32-array/*.js": "./full/uint32-array/*.js",
|
|
556
|
+
"./es/typed-array": "./es/typed-array/index.js",
|
|
557
|
+
"./es/typed-array/*": "./es/typed-array/*.js",
|
|
558
|
+
"./es/typed-array/*.js": "./es/typed-array/*.js",
|
|
559
|
+
"./stable/typed-array": "./stable/typed-array/index.js",
|
|
560
|
+
"./stable/typed-array/*": "./stable/typed-array/*.js",
|
|
561
|
+
"./stable/typed-array/*.js": "./stable/typed-array/*.js",
|
|
562
|
+
"./actual/typed-array": "./actual/typed-array/index.js",
|
|
563
|
+
"./actual/typed-array/*": "./actual/typed-array/*.js",
|
|
564
|
+
"./actual/typed-array/*.js": "./actual/typed-array/*.js",
|
|
565
|
+
"./full/typed-array": "./full/typed-array/index.js",
|
|
566
|
+
"./full/typed-array/*": "./full/typed-array/*.js",
|
|
567
|
+
"./full/typed-array/*.js": "./full/typed-array/*.js",
|
|
568
|
+
"./es/uri-error": "./es/uri-error/index.js",
|
|
569
|
+
"./es/uri-error/*": "./es/uri-error/*.js",
|
|
570
|
+
"./es/uri-error/*.js": "./es/uri-error/*.js",
|
|
571
|
+
"./stable/uri-error": "./stable/uri-error/index.js",
|
|
572
|
+
"./stable/uri-error/*": "./stable/uri-error/*.js",
|
|
573
|
+
"./stable/uri-error/*.js": "./stable/uri-error/*.js",
|
|
574
|
+
"./actual/uri-error": "./actual/uri-error/index.js",
|
|
575
|
+
"./actual/uri-error/*": "./actual/uri-error/*.js",
|
|
576
|
+
"./actual/uri-error/*.js": "./actual/uri-error/*.js",
|
|
577
|
+
"./full/uri-error": "./full/uri-error/index.js",
|
|
578
|
+
"./full/uri-error/*": "./full/uri-error/*.js",
|
|
579
|
+
"./full/uri-error/*.js": "./full/uri-error/*.js",
|
|
580
|
+
"./stable/url": "./stable/url/index.js",
|
|
581
|
+
"./stable/url/*": "./stable/url/*.js",
|
|
582
|
+
"./stable/url/*.js": "./stable/url/*.js",
|
|
583
|
+
"./actual/url": "./actual/url/index.js",
|
|
584
|
+
"./actual/url/*": "./actual/url/*.js",
|
|
585
|
+
"./actual/url/*.js": "./actual/url/*.js",
|
|
586
|
+
"./full/url": "./full/url/index.js",
|
|
587
|
+
"./full/url/*": "./full/url/*.js",
|
|
588
|
+
"./full/url/*.js": "./full/url/*.js",
|
|
589
|
+
"./stable/url-search-params": "./stable/url-search-params/index.js",
|
|
590
|
+
"./stable/url-search-params/*": "./stable/url-search-params/*.js",
|
|
591
|
+
"./stable/url-search-params/*.js": "./stable/url-search-params/*.js",
|
|
592
|
+
"./actual/url-search-params": "./actual/url-search-params/index.js",
|
|
593
|
+
"./actual/url-search-params/*": "./actual/url-search-params/*.js",
|
|
594
|
+
"./actual/url-search-params/*.js": "./actual/url-search-params/*.js",
|
|
595
|
+
"./full/url-search-params": "./full/url-search-params/index.js",
|
|
596
|
+
"./full/url-search-params/*": "./full/url-search-params/*.js",
|
|
597
|
+
"./full/url-search-params/*.js": "./full/url-search-params/*.js",
|
|
598
|
+
"./es/weak-map": "./es/weak-map/index.js",
|
|
599
|
+
"./es/weak-map/*": "./es/weak-map/*.js",
|
|
600
|
+
"./es/weak-map/*.js": "./es/weak-map/*.js",
|
|
601
|
+
"./stable/weak-map": "./stable/weak-map/index.js",
|
|
602
|
+
"./stable/weak-map/*": "./stable/weak-map/*.js",
|
|
603
|
+
"./stable/weak-map/*.js": "./stable/weak-map/*.js",
|
|
604
|
+
"./actual/weak-map": "./actual/weak-map/index.js",
|
|
605
|
+
"./actual/weak-map/*": "./actual/weak-map/*.js",
|
|
606
|
+
"./actual/weak-map/*.js": "./actual/weak-map/*.js",
|
|
607
|
+
"./full/weak-map": "./full/weak-map/index.js",
|
|
608
|
+
"./full/weak-map/*": "./full/weak-map/*.js",
|
|
609
|
+
"./full/weak-map/*.js": "./full/weak-map/*.js",
|
|
610
|
+
"./es/weak-set": "./es/weak-set/index.js",
|
|
611
|
+
"./es/weak-set/*": "./es/weak-set/*.js",
|
|
612
|
+
"./es/weak-set/*.js": "./es/weak-set/*.js",
|
|
613
|
+
"./stable/weak-set": "./stable/weak-set/index.js",
|
|
614
|
+
"./stable/weak-set/*": "./stable/weak-set/*.js",
|
|
615
|
+
"./stable/weak-set/*.js": "./stable/weak-set/*.js",
|
|
616
|
+
"./actual/weak-set": "./actual/weak-set/index.js",
|
|
617
|
+
"./actual/weak-set/*": "./actual/weak-set/*.js",
|
|
618
|
+
"./actual/weak-set/*.js": "./actual/weak-set/*.js",
|
|
619
|
+
"./full/weak-set": "./full/weak-set/index.js",
|
|
620
|
+
"./full/weak-set/*": "./full/weak-set/*.js",
|
|
621
|
+
"./full/weak-set/*.js": "./full/weak-set/*.js",
|
|
622
|
+
"./stable/atob": "./stable/atob.js",
|
|
623
|
+
"./stable/atob.js": "./stable/atob.js",
|
|
624
|
+
"./actual/atob": "./actual/atob.js",
|
|
625
|
+
"./actual/atob.js": "./actual/atob.js",
|
|
626
|
+
"./full/atob": "./full/atob.js",
|
|
627
|
+
"./full/atob.js": "./full/atob.js",
|
|
628
|
+
"./stable/btoa": "./stable/btoa.js",
|
|
629
|
+
"./stable/btoa.js": "./stable/btoa.js",
|
|
630
|
+
"./actual/btoa": "./actual/btoa.js",
|
|
631
|
+
"./actual/btoa.js": "./actual/btoa.js",
|
|
632
|
+
"./full/btoa": "./full/btoa.js",
|
|
633
|
+
"./full/btoa.js": "./full/btoa.js",
|
|
634
|
+
"./stable/clear-immediate": "./stable/clear-immediate.js",
|
|
635
|
+
"./stable/clear-immediate.js": "./stable/clear-immediate.js",
|
|
636
|
+
"./actual/clear-immediate": "./actual/clear-immediate.js",
|
|
637
|
+
"./actual/clear-immediate.js": "./actual/clear-immediate.js",
|
|
638
|
+
"./full/clear-immediate": "./full/clear-immediate.js",
|
|
639
|
+
"./full/clear-immediate.js": "./full/clear-immediate.js",
|
|
640
|
+
"./es/global-this": "./es/global-this.js",
|
|
641
|
+
"./es/global-this.js": "./es/global-this.js",
|
|
642
|
+
"./stable/global-this": "./stable/global-this.js",
|
|
643
|
+
"./stable/global-this.js": "./stable/global-this.js",
|
|
644
|
+
"./actual/global-this": "./actual/global-this.js",
|
|
645
|
+
"./actual/global-this.js": "./actual/global-this.js",
|
|
646
|
+
"./full/global-this": "./full/global-this.js",
|
|
647
|
+
"./full/global-this.js": "./full/global-this.js",
|
|
648
|
+
"./es/parse-float": "./es/parse-float.js",
|
|
649
|
+
"./es/parse-float.js": "./es/parse-float.js",
|
|
650
|
+
"./stable/parse-float": "./stable/parse-float.js",
|
|
651
|
+
"./stable/parse-float.js": "./stable/parse-float.js",
|
|
652
|
+
"./actual/parse-float": "./actual/parse-float.js",
|
|
653
|
+
"./actual/parse-float.js": "./actual/parse-float.js",
|
|
654
|
+
"./full/parse-float": "./full/parse-float.js",
|
|
655
|
+
"./full/parse-float.js": "./full/parse-float.js",
|
|
656
|
+
"./es/parse-int": "./es/parse-int.js",
|
|
657
|
+
"./es/parse-int.js": "./es/parse-int.js",
|
|
658
|
+
"./stable/parse-int": "./stable/parse-int.js",
|
|
659
|
+
"./stable/parse-int.js": "./stable/parse-int.js",
|
|
660
|
+
"./actual/parse-int": "./actual/parse-int.js",
|
|
661
|
+
"./actual/parse-int.js": "./actual/parse-int.js",
|
|
662
|
+
"./full/parse-int": "./full/parse-int.js",
|
|
663
|
+
"./full/parse-int.js": "./full/parse-int.js",
|
|
664
|
+
"./stable/queue-microtask": "./stable/queue-microtask.js",
|
|
665
|
+
"./stable/queue-microtask.js": "./stable/queue-microtask.js",
|
|
666
|
+
"./actual/queue-microtask": "./actual/queue-microtask.js",
|
|
667
|
+
"./actual/queue-microtask.js": "./actual/queue-microtask.js",
|
|
668
|
+
"./full/queue-microtask": "./full/queue-microtask.js",
|
|
669
|
+
"./full/queue-microtask.js": "./full/queue-microtask.js",
|
|
670
|
+
"./stable/self": "./stable/self.js",
|
|
671
|
+
"./stable/self.js": "./stable/self.js",
|
|
672
|
+
"./actual/self": "./actual/self.js",
|
|
673
|
+
"./actual/self.js": "./actual/self.js",
|
|
674
|
+
"./full/self": "./full/self.js",
|
|
675
|
+
"./full/self.js": "./full/self.js",
|
|
676
|
+
"./stable/set-immediate": "./stable/set-immediate.js",
|
|
677
|
+
"./stable/set-immediate.js": "./stable/set-immediate.js",
|
|
678
|
+
"./actual/set-immediate": "./actual/set-immediate.js",
|
|
679
|
+
"./actual/set-immediate.js": "./actual/set-immediate.js",
|
|
680
|
+
"./full/set-immediate": "./full/set-immediate.js",
|
|
681
|
+
"./full/set-immediate.js": "./full/set-immediate.js",
|
|
682
|
+
"./stable/structured-clone": "./stable/structured-clone.js",
|
|
683
|
+
"./stable/structured-clone.js": "./stable/structured-clone.js",
|
|
684
|
+
"./actual/structured-clone": "./actual/structured-clone.js",
|
|
685
|
+
"./actual/structured-clone.js": "./actual/structured-clone.js",
|
|
686
|
+
"./full/structured-clone": "./full/structured-clone.js",
|
|
687
|
+
"./full/structured-clone.js": "./full/structured-clone.js",
|
|
688
|
+
"./es/get-iterator": "./es/get-iterator.js",
|
|
689
|
+
"./es/get-iterator.js": "./es/get-iterator.js",
|
|
690
|
+
"./stable/get-iterator": "./stable/get-iterator.js",
|
|
691
|
+
"./stable/get-iterator.js": "./stable/get-iterator.js",
|
|
692
|
+
"./actual/get-iterator": "./actual/get-iterator.js",
|
|
693
|
+
"./actual/get-iterator.js": "./actual/get-iterator.js",
|
|
694
|
+
"./full/get-iterator": "./full/get-iterator.js",
|
|
695
|
+
"./full/get-iterator.js": "./full/get-iterator.js",
|
|
696
|
+
"./es/get-iterator-method": "./es/get-iterator-method.js",
|
|
697
|
+
"./es/get-iterator-method.js": "./es/get-iterator-method.js",
|
|
698
|
+
"./stable/get-iterator-method": "./stable/get-iterator-method.js",
|
|
699
|
+
"./stable/get-iterator-method.js": "./stable/get-iterator-method.js",
|
|
700
|
+
"./actual/get-iterator-method": "./actual/get-iterator-method.js",
|
|
701
|
+
"./actual/get-iterator-method.js": "./actual/get-iterator-method.js",
|
|
702
|
+
"./full/get-iterator-method": "./full/get-iterator-method.js",
|
|
703
|
+
"./full/get-iterator-method.js": "./full/get-iterator-method.js",
|
|
704
|
+
"./es/is-iterable": "./es/is-iterable.js",
|
|
705
|
+
"./es/is-iterable.js": "./es/is-iterable.js",
|
|
706
|
+
"./stable/is-iterable": "./stable/is-iterable.js",
|
|
707
|
+
"./stable/is-iterable.js": "./stable/is-iterable.js",
|
|
708
|
+
"./actual/is-iterable": "./actual/is-iterable.js",
|
|
709
|
+
"./actual/is-iterable.js": "./actual/is-iterable.js",
|
|
710
|
+
"./full/is-iterable": "./full/is-iterable.js",
|
|
711
|
+
"./full/is-iterable.js": "./full/is-iterable.js",
|
|
712
|
+
"./proposals/accessible-object-hasownproperty": "./proposals/accessible-object-hasownproperty.js",
|
|
713
|
+
"./proposals/accessible-object-hasownproperty.js": "./proposals/accessible-object-hasownproperty.js",
|
|
714
|
+
"./proposals/array-buffer-base64": "./proposals/array-buffer-base64.js",
|
|
715
|
+
"./proposals/array-buffer-base64.js": "./proposals/array-buffer-base64.js",
|
|
716
|
+
"./proposals/array-buffer-transfer": "./proposals/array-buffer-transfer.js",
|
|
717
|
+
"./proposals/array-buffer-transfer.js": "./proposals/array-buffer-transfer.js",
|
|
718
|
+
"./proposals/array-filtering": "./proposals/array-filtering.js",
|
|
719
|
+
"./proposals/array-filtering.js": "./proposals/array-filtering.js",
|
|
720
|
+
"./proposals/array-find-from-last": "./proposals/array-find-from-last.js",
|
|
721
|
+
"./proposals/array-find-from-last.js": "./proposals/array-find-from-last.js",
|
|
722
|
+
"./proposals/array-flat-map": "./proposals/array-flat-map.js",
|
|
723
|
+
"./proposals/array-flat-map.js": "./proposals/array-flat-map.js",
|
|
724
|
+
"./proposals/array-from-async": "./proposals/array-from-async.js",
|
|
725
|
+
"./proposals/array-from-async.js": "./proposals/array-from-async.js",
|
|
726
|
+
"./proposals/array-grouping": "./proposals/array-grouping.js",
|
|
727
|
+
"./proposals/array-grouping.js": "./proposals/array-grouping.js",
|
|
728
|
+
"./proposals/array-includes": "./proposals/array-includes.js",
|
|
729
|
+
"./proposals/array-includes.js": "./proposals/array-includes.js",
|
|
730
|
+
"./proposals/array-is-template-object": "./proposals/array-is-template-object.js",
|
|
731
|
+
"./proposals/array-is-template-object.js": "./proposals/array-is-template-object.js",
|
|
732
|
+
"./proposals/array-unique": "./proposals/array-unique.js",
|
|
733
|
+
"./proposals/array-unique.js": "./proposals/array-unique.js",
|
|
734
|
+
"./proposals/async-iteration": "./proposals/async-iteration.js",
|
|
735
|
+
"./proposals/async-iteration.js": "./proposals/async-iteration.js",
|
|
736
|
+
"./proposals/async-iterator-helpers": "./proposals/async-iterator-helpers.js",
|
|
737
|
+
"./proposals/async-iterator-helpers.js": "./proposals/async-iterator-helpers.js",
|
|
738
|
+
"./proposals/change-array-by-copy": "./proposals/change-array-by-copy.js",
|
|
739
|
+
"./proposals/change-array-by-copy.js": "./proposals/change-array-by-copy.js",
|
|
740
|
+
"./proposals/collection-of-from": "./proposals/collection-of-from.js",
|
|
741
|
+
"./proposals/collection-of-from.js": "./proposals/collection-of-from.js",
|
|
742
|
+
"./proposals/data-view-get-set-uint8-clamped": "./proposals/data-view-get-set-uint8-clamped.js",
|
|
743
|
+
"./proposals/data-view-get-set-uint8-clamped.js": "./proposals/data-view-get-set-uint8-clamped.js",
|
|
744
|
+
"./proposals/decorator-metadata": "./proposals/decorator-metadata.js",
|
|
745
|
+
"./proposals/decorator-metadata.js": "./proposals/decorator-metadata.js",
|
|
746
|
+
"./proposals/error-cause": "./proposals/error-cause.js",
|
|
747
|
+
"./proposals/error-cause.js": "./proposals/error-cause.js",
|
|
748
|
+
"./proposals/explicit-resource-management": "./proposals/explicit-resource-management.js",
|
|
749
|
+
"./proposals/explicit-resource-management.js": "./proposals/explicit-resource-management.js",
|
|
750
|
+
"./proposals/extractors": "./proposals/extractors.js",
|
|
751
|
+
"./proposals/extractors.js": "./proposals/extractors.js",
|
|
752
|
+
"./proposals/float16": "./proposals/float16.js",
|
|
753
|
+
"./proposals/float16.js": "./proposals/float16.js",
|
|
754
|
+
"./proposals/function-demethodize": "./proposals/function-demethodize.js",
|
|
755
|
+
"./proposals/function-demethodize.js": "./proposals/function-demethodize.js",
|
|
756
|
+
"./proposals/global-this": "./proposals/global-this.js",
|
|
757
|
+
"./proposals/global-this.js": "./proposals/global-this.js",
|
|
758
|
+
"./proposals/is-error": "./proposals/is-error.js",
|
|
759
|
+
"./proposals/is-error.js": "./proposals/is-error.js",
|
|
760
|
+
"./proposals/iterator-helpers": "./proposals/iterator-helpers.js",
|
|
761
|
+
"./proposals/iterator-helpers.js": "./proposals/iterator-helpers.js",
|
|
762
|
+
"./proposals/iterator-chunking": "./proposals/iterator-chunking.js",
|
|
763
|
+
"./proposals/iterator-chunking.js": "./proposals/iterator-chunking.js",
|
|
764
|
+
"./proposals/iterator-includes": "./proposals/iterator-includes.js",
|
|
765
|
+
"./proposals/iterator-includes.js": "./proposals/iterator-includes.js",
|
|
766
|
+
"./proposals/iterator-join": "./proposals/iterator-join.js",
|
|
767
|
+
"./proposals/iterator-join.js": "./proposals/iterator-join.js",
|
|
768
|
+
"./proposals/iterator-range": "./proposals/iterator-range.js",
|
|
769
|
+
"./proposals/iterator-range.js": "./proposals/iterator-range.js",
|
|
770
|
+
"./proposals/iterator-sequencing": "./proposals/iterator-sequencing.js",
|
|
771
|
+
"./proposals/iterator-sequencing.js": "./proposals/iterator-sequencing.js",
|
|
772
|
+
"./proposals/joint-iteration": "./proposals/joint-iteration.js",
|
|
773
|
+
"./proposals/joint-iteration.js": "./proposals/joint-iteration.js",
|
|
774
|
+
"./proposals/json-parse-with-source": "./proposals/json-parse-with-source.js",
|
|
775
|
+
"./proposals/json-parse-with-source.js": "./proposals/json-parse-with-source.js",
|
|
776
|
+
"./proposals/map-upsert": "./proposals/map-upsert.js",
|
|
777
|
+
"./proposals/map-upsert.js": "./proposals/map-upsert.js",
|
|
778
|
+
"./proposals/math-clamp": "./proposals/math-clamp.js",
|
|
779
|
+
"./proposals/math-clamp.js": "./proposals/math-clamp.js",
|
|
780
|
+
"./proposals/math-sum": "./proposals/math-sum.js",
|
|
781
|
+
"./proposals/math-sum.js": "./proposals/math-sum.js",
|
|
782
|
+
"./proposals/object-from-entries": "./proposals/object-from-entries.js",
|
|
783
|
+
"./proposals/object-from-entries.js": "./proposals/object-from-entries.js",
|
|
784
|
+
"./proposals/object-getownpropertydescriptors": "./proposals/object-getownpropertydescriptors.js",
|
|
785
|
+
"./proposals/object-getownpropertydescriptors.js": "./proposals/object-getownpropertydescriptors.js",
|
|
786
|
+
"./proposals/object-keys-length": "./proposals/object-keys-length.js",
|
|
787
|
+
"./proposals/object-keys-length.js": "./proposals/object-keys-length.js",
|
|
788
|
+
"./proposals/object-values-entries": "./proposals/object-values-entries.js",
|
|
789
|
+
"./proposals/object-values-entries.js": "./proposals/object-values-entries.js",
|
|
790
|
+
"./proposals/pattern-matching": "./proposals/pattern-matching.js",
|
|
791
|
+
"./proposals/pattern-matching.js": "./proposals/pattern-matching.js",
|
|
792
|
+
"./proposals/promise-all-keyed": "./proposals/promise-all-keyed.js",
|
|
793
|
+
"./proposals/promise-all-keyed.js": "./proposals/promise-all-keyed.js",
|
|
794
|
+
"./proposals/promise-all-settled": "./proposals/promise-all-settled.js",
|
|
795
|
+
"./proposals/promise-all-settled.js": "./proposals/promise-all-settled.js",
|
|
796
|
+
"./proposals/promise-any": "./proposals/promise-any.js",
|
|
797
|
+
"./proposals/promise-any.js": "./proposals/promise-any.js",
|
|
798
|
+
"./proposals/promise-finally": "./proposals/promise-finally.js",
|
|
799
|
+
"./proposals/promise-finally.js": "./proposals/promise-finally.js",
|
|
800
|
+
"./proposals/promise-try": "./proposals/promise-try.js",
|
|
801
|
+
"./proposals/promise-try.js": "./proposals/promise-try.js",
|
|
802
|
+
"./proposals/promise-with-resolvers": "./proposals/promise-with-resolvers.js",
|
|
803
|
+
"./proposals/promise-with-resolvers.js": "./proposals/promise-with-resolvers.js",
|
|
804
|
+
"./proposals/regexp-dotall-flag": "./proposals/regexp-dotall-flag.js",
|
|
805
|
+
"./proposals/regexp-dotall-flag.js": "./proposals/regexp-dotall-flag.js",
|
|
806
|
+
"./proposals/regexp-escaping": "./proposals/regexp-escaping.js",
|
|
807
|
+
"./proposals/regexp-escaping.js": "./proposals/regexp-escaping.js",
|
|
808
|
+
"./proposals/regexp-named-groups": "./proposals/regexp-named-groups.js",
|
|
809
|
+
"./proposals/regexp-named-groups.js": "./proposals/regexp-named-groups.js",
|
|
810
|
+
"./proposals/relative-indexing-method": "./proposals/relative-indexing-method.js",
|
|
811
|
+
"./proposals/relative-indexing-method.js": "./proposals/relative-indexing-method.js",
|
|
812
|
+
"./proposals/set-methods": "./proposals/set-methods.js",
|
|
813
|
+
"./proposals/set-methods.js": "./proposals/set-methods.js",
|
|
814
|
+
"./proposals/string-cooked": "./proposals/string-cooked.js",
|
|
815
|
+
"./proposals/string-cooked.js": "./proposals/string-cooked.js",
|
|
816
|
+
"./proposals/string-dedent": "./proposals/string-dedent.js",
|
|
817
|
+
"./proposals/string-dedent.js": "./proposals/string-dedent.js",
|
|
818
|
+
"./proposals/string-left-right-trim": "./proposals/string-left-right-trim.js",
|
|
819
|
+
"./proposals/string-left-right-trim.js": "./proposals/string-left-right-trim.js",
|
|
820
|
+
"./proposals/string-match-all": "./proposals/string-match-all.js",
|
|
821
|
+
"./proposals/string-match-all.js": "./proposals/string-match-all.js",
|
|
822
|
+
"./proposals/string-padding": "./proposals/string-padding.js",
|
|
823
|
+
"./proposals/string-padding.js": "./proposals/string-padding.js",
|
|
824
|
+
"./proposals/string-replace-all": "./proposals/string-replace-all.js",
|
|
825
|
+
"./proposals/string-replace-all.js": "./proposals/string-replace-all.js",
|
|
826
|
+
"./proposals/symbol-description": "./proposals/symbol-description.js",
|
|
827
|
+
"./proposals/symbol-description.js": "./proposals/symbol-description.js",
|
|
828
|
+
"./proposals/symbol-predicates": "./proposals/symbol-predicates.js",
|
|
829
|
+
"./proposals/symbol-predicates.js": "./proposals/symbol-predicates.js",
|
|
830
|
+
"./proposals/well-formed-stringify": "./proposals/well-formed-stringify.js",
|
|
831
|
+
"./proposals/well-formed-stringify.js": "./proposals/well-formed-stringify.js",
|
|
832
|
+
"./proposals/well-formed-unicode-strings": "./proposals/well-formed-unicode-strings.js",
|
|
833
|
+
"./proposals/well-formed-unicode-strings.js": "./proposals/well-formed-unicode-strings.js",
|
|
834
|
+
"./stage/3": "./stage/3.js",
|
|
835
|
+
"./stage/3.js": "./stage/3.js",
|
|
836
|
+
"./stage/2.7": "./stage/2.7.js",
|
|
837
|
+
"./stage/2.7.js": "./stage/2.7.js",
|
|
838
|
+
"./stage/2": "./stage/2.js",
|
|
839
|
+
"./stage/2.js": "./stage/2.js",
|
|
840
|
+
"./stage/1": "./stage/1.js",
|
|
841
|
+
"./stage/1.js": "./stage/1.js",
|
|
842
|
+
"./stage/0": "./stage/0.js",
|
|
843
|
+
"./stage/0.js": "./stage/0.js",
|
|
844
|
+
"./es": "./es/index.js",
|
|
845
|
+
"./es/index": "./es/index.js",
|
|
846
|
+
"./es/index.js": "./es/index.js",
|
|
847
|
+
"./stable": "./stable/index.js",
|
|
848
|
+
"./stable/index": "./stable/index.js",
|
|
849
|
+
"./stable/index.js": "./stable/index.js",
|
|
850
|
+
"./actual": "./actual/index.js",
|
|
851
|
+
"./actual/index": "./actual/index.js",
|
|
852
|
+
"./actual/index.js": "./actual/index.js",
|
|
853
|
+
"./full": "./full/index.js",
|
|
854
|
+
"./full/index": "./full/index.js",
|
|
855
|
+
"./full/index.js": "./full/index.js",
|
|
856
|
+
"./index": "./index.js",
|
|
857
|
+
"./index.js": "./index.js"
|
|
81
858
|
}
|
|
82
859
|
}
|