core-js 4.0.0-alpha.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 -19
- package/README.md +9 -9
- package/actual/aggregate-error/constructor.js +2 -0
- package/actual/aggregate-error/index.js +3 -0
- package/actual/aggregate-error/is-error.js +6 -0
- package/actual/array/from-async.js +2 -1
- package/actual/array/from.js +2 -0
- package/actual/array/index.js +2 -1
- 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 +1 -1
- package/actual/array/prototype/iterator.js +7 -0
- package/actual/array/prototype/values.js +10 -0
- package/actual/array/values.js +2 -0
- package/actual/array-buffer/detached.js +0 -1
- package/actual/async-disposable-stack/constructor.js +4 -4
- package/actual/async-disposable-stack/index.js +4 -4
- package/actual/async-iterator/index.js +1 -1
- package/actual/data-view/constructor.js +3 -2
- package/actual/data-view/get-float16.js +1 -1
- package/actual/data-view/index.js +3 -2
- package/actual/data-view/set-float16.js +2 -1
- package/actual/disposable-stack/constructor.js +3 -3
- package/actual/disposable-stack/index.js +3 -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/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/error/constructor.js +2 -2
- package/actual/error/index.js +3 -2
- package/actual/error/is-error.js +6 -0
- 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/instance/name.js +9 -0
- package/actual/function/name.js +4 -0
- package/actual/index.js +58 -44
- package/actual/instance/at.js +2 -2
- package/actual/instance/code-point-at.js +1 -1
- package/actual/instance/concat.js +1 -1
- package/actual/instance/copy-within.js +1 -1
- package/actual/instance/ends-with.js +1 -1
- package/actual/instance/entries.js +2 -2
- package/actual/instance/fill.js +1 -1
- package/actual/instance/filter.js +1 -1
- package/actual/instance/find-index.js +1 -1
- package/actual/instance/find-last-index.js +1 -1
- package/actual/instance/find-last.js +1 -1
- package/actual/instance/find.js +1 -1
- package/actual/instance/flat-map.js +1 -1
- package/actual/instance/flat.js +1 -1
- package/actual/instance/for-each.js +1 -0
- package/actual/instance/includes.js +2 -2
- package/actual/instance/index-of.js +1 -1
- package/actual/instance/is-well-formed.js +1 -1
- package/actual/instance/join.js +11 -0
- package/actual/instance/keys.js +2 -2
- package/actual/instance/last-index-of.js +1 -1
- package/actual/instance/map.js +1 -1
- package/actual/instance/match-all.js +1 -1
- package/actual/instance/name.js +9 -0
- package/actual/instance/pad-end.js +1 -1
- package/actual/instance/pad-start.js +1 -1
- package/actual/instance/push.js +1 -1
- package/actual/instance/reduce-right.js +1 -1
- package/actual/instance/reduce.js +1 -1
- package/actual/instance/repeat.js +1 -1
- package/actual/instance/replace-all.js +1 -1
- package/actual/instance/reverse.js +1 -1
- package/actual/instance/slice.js +1 -1
- package/actual/instance/sort.js +1 -1
- package/actual/instance/splice.js +1 -1
- package/actual/instance/starts-with.js +1 -1
- package/actual/instance/to-exponential.js +12 -0
- package/actual/instance/to-fixed.js +12 -0
- package/actual/instance/to-reversed.js +1 -1
- package/actual/instance/to-sorted.js +1 -1
- package/actual/instance/to-spliced.js +1 -1
- package/actual/instance/to-well-formed.js +1 -1
- package/actual/instance/trim-end.js +1 -1
- package/actual/instance/trim-left.js +1 -1
- package/actual/instance/trim-right.js +1 -1
- package/actual/instance/trim-start.js +1 -1
- package/actual/instance/trim.js +1 -1
- package/actual/instance/unshift.js +1 -1
- package/actual/instance/values.js +4 -2
- package/actual/instance/with.js +1 -1
- 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/iterator/concat.js +23 -0
- package/actual/iterator/constructor.js +13 -13
- package/actual/iterator/drop.js +2 -2
- package/actual/iterator/every.js +5 -2
- package/actual/iterator/filter.js +2 -2
- package/actual/iterator/find.js +5 -2
- package/actual/iterator/flat-map.js +2 -2
- package/actual/iterator/for-each.js +5 -2
- package/actual/iterator/from.js +14 -14
- package/actual/iterator/index.js +18 -14
- package/actual/iterator/map.js +2 -2
- 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 +5 -2
- package/actual/iterator/some.js +5 -2
- package/actual/iterator/take.js +2 -2
- package/actual/iterator/to-array.js +5 -2
- package/actual/iterator/zip-keyed.js +24 -0
- package/actual/iterator/zip.js +23 -0
- package/actual/json/index.js +3 -3
- package/actual/json/is-raw-json.js +1 -1
- package/actual/json/parse.js +1 -1
- package/actual/json/raw-json.js +1 -1
- package/actual/json/stringify.js +1 -4
- package/actual/map/constructor.js +2 -0
- package/actual/map/get-or-insert-computed.js +11 -0
- package/actual/map/get-or-insert.js +11 -0
- package/actual/map/group-by.js +2 -0
- package/actual/map/index.js +2 -0
- package/actual/map/prototype/get-or-insert-computed.js +11 -0
- package/actual/map/prototype/get-or-insert.js +11 -0
- package/actual/math/f16round.js +1 -1
- package/actual/math/index.js +6 -2
- package/actual/math/sum-precise.js +10 -0
- package/actual/number/instance/to-exponential.js +12 -0
- package/actual/number/instance/to-fixed.js +12 -0
- package/actual/object/create.js +3 -3
- package/actual/object/define-properties.js +3 -3
- package/actual/object/define-property.js +3 -3
- package/actual/object/from-entries.js +2 -0
- package/actual/object/get-own-property-descriptor.js +3 -3
- package/actual/object/get-own-property-names.js +3 -3
- package/actual/promise/all-settled.js +3 -3
- package/actual/promise/all.js +3 -3
- package/actual/promise/any.js +3 -3
- package/actual/promise/index.js +1 -0
- package/actual/promise/race.js +3 -3
- package/actual/promise/reject.js +3 -3
- package/actual/promise/resolve.js +3 -3
- package/actual/promise/try.js +17 -0
- package/actual/promise/with-resolvers.js +2 -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/regexp/escape.js +8 -0
- package/actual/regexp/exec.js +2 -0
- package/actual/regexp/index.js +3 -0
- package/actual/regexp/instance/flags.js +11 -0
- package/actual/regexp/test.js +1 -0
- package/actual/set/constructor.js +7 -7
- package/actual/set/difference.js +1 -1
- package/actual/set/index.js +7 -7
- package/actual/set/intersection.js +1 -1
- package/actual/set/is-disjoint-from.js +1 -1
- package/actual/set/is-subset-of.js +1 -1
- package/actual/set/is-superset-of.js +1 -1
- 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 +1 -1
- package/actual/set/union.js +1 -1
- package/actual/string/index.js +2 -2
- 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/iterator.js +1 -1
- package/actual/string/match.js +0 -4
- package/actual/string/prototype/iterator.js +7 -0
- package/actual/string/replace.js +0 -4
- package/actual/string/search.js +0 -4
- package/actual/string/split.js +0 -4
- package/actual/suppressed-error/constructor.js +1 -1
- package/actual/suppressed-error/index.js +2 -1
- package/actual/suppressed-error/is-error.js +6 -0
- package/actual/symbol/async-dispose.js +2 -2
- package/actual/symbol/dispose.js +2 -2
- package/actual/symbol/index.js +2 -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/constructors.js +18 -0
- package/actual/typed-array/from-base64.js +43 -1
- package/actual/typed-array/from-hex.js +43 -1
- package/actual/typed-array/from.js +42 -0
- package/actual/typed-array/index.js +9 -2
- package/actual/typed-array/methods.js +49 -0
- package/actual/typed-array/of.js +42 -0
- package/actual/typed-array/set-from-base64.js +2 -0
- package/actual/typed-array/set-from-hex.js +2 -0
- package/actual/typed-array/to-base64.js +1 -1
- package/actual/typed-array/to-hex.js +1 -1
- 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 +2 -0
- package/actual/url/constructor.js +18 -0
- package/actual/url/index.js +3 -0
- package/actual/url/parse.js +15 -0
- package/actual/url/to-json.js +2 -4
- package/actual/url-search-params/constructor.js +14 -0
- package/actual/url-search-params/index.js +3 -0
- package/actual/weak-map/constructor.js +3 -0
- package/actual/weak-map/get-or-insert-computed.js +11 -0
- package/actual/weak-map/get-or-insert.js +11 -0
- package/actual/weak-map/index.js +3 -0
- 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 +1 -0
- package/actual/weak-set/index.js +1 -0
- package/configurator.js +1 -1
- package/es/aggregate-error/constructor.js +1 -0
- package/es/aggregate-error/index.js +2 -0
- package/es/aggregate-error/is-error.js +6 -0
- package/es/array/from-async.js +13 -0
- package/es/array/from.js +1 -0
- package/es/array/index.js +5 -0
- 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 +1 -1
- package/es/array/prototype/iterator.js +7 -0
- package/es/array/prototype/values.js +9 -0
- package/es/array/values.js +1 -0
- package/es/array-buffer/detached.js +0 -1
- package/es/async-disposable-stack/constructor.js +14 -0
- package/es/async-disposable-stack/index.js +14 -0
- package/es/async-iterator/index.js +11 -0
- package/es/data-view/constructor.js +3 -0
- package/es/data-view/get-float16.js +2 -0
- package/es/data-view/index.js +3 -0
- package/es/data-view/set-float16.js +3 -0
- package/es/disposable-stack/constructor.js +9 -0
- package/es/disposable-stack/index.js +9 -0
- package/es/error/constructor.js +2 -2
- package/es/error/index.js +3 -2
- package/es/error/is-error.js +6 -0
- 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/instance/name.js +9 -0
- package/es/function/name.js +4 -0
- package/es/index.js +55 -6
- package/es/instance/at.js +2 -2
- package/es/instance/code-point-at.js +1 -1
- package/es/instance/concat.js +1 -1
- package/es/instance/copy-within.js +1 -1
- package/es/instance/ends-with.js +1 -1
- package/es/instance/entries.js +1 -1
- package/es/instance/fill.js +1 -1
- package/es/instance/filter.js +1 -1
- package/es/instance/find-index.js +1 -1
- package/es/instance/find-last-index.js +1 -1
- package/es/instance/find-last.js +1 -1
- package/es/instance/find.js +1 -1
- package/es/instance/flat-map.js +1 -1
- package/es/instance/flat.js +1 -1
- package/es/instance/includes.js +2 -2
- package/es/instance/index-of.js +1 -1
- package/es/instance/is-well-formed.js +1 -1
- package/es/instance/join.js +11 -0
- package/es/instance/keys.js +1 -1
- package/es/instance/last-index-of.js +1 -1
- package/es/instance/map.js +1 -1
- package/es/instance/match-all.js +1 -1
- package/es/instance/name.js +9 -0
- package/es/instance/pad-end.js +1 -1
- package/es/instance/pad-start.js +1 -1
- package/es/instance/push.js +1 -1
- package/es/instance/reduce-right.js +1 -1
- package/es/instance/reduce.js +1 -1
- package/es/instance/repeat.js +1 -1
- package/es/instance/replace-all.js +1 -1
- package/es/instance/reverse.js +1 -1
- package/es/instance/slice.js +1 -1
- package/es/instance/sort.js +1 -1
- package/es/instance/splice.js +1 -1
- package/es/instance/starts-with.js +1 -1
- package/es/instance/to-exponential.js +12 -0
- package/es/instance/to-fixed.js +12 -0
- package/es/instance/to-reversed.js +1 -1
- package/es/instance/to-sorted.js +1 -1
- package/es/instance/to-spliced.js +1 -1
- package/es/instance/to-well-formed.js +1 -1
- package/es/instance/trim-end.js +1 -1
- package/es/instance/trim-left.js +1 -1
- package/es/instance/trim-right.js +1 -1
- package/es/instance/trim-start.js +1 -1
- package/es/instance/trim.js +1 -1
- package/es/instance/unshift.js +1 -1
- package/es/instance/values.js +1 -1
- package/es/instance/with.js +1 -1
- 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/iterator/concat.js +22 -0
- package/es/iterator/constructor.js +21 -0
- package/es/iterator/drop.js +8 -0
- package/es/iterator/every.js +10 -0
- package/es/iterator/filter.js +8 -0
- package/es/iterator/find.js +10 -0
- package/es/iterator/flat-map.js +10 -0
- package/es/iterator/for-each.js +10 -0
- package/es/iterator/from.js +22 -0
- package/es/iterator/index.js +23 -0
- package/es/iterator/map.js +8 -0
- 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 +10 -0
- package/es/iterator/some.js +10 -0
- package/es/iterator/take.js +8 -0
- package/es/iterator/to-array.js +10 -0
- package/es/json/index.js +3 -0
- package/es/json/is-raw-json.js +6 -0
- package/es/json/parse.js +6 -0
- package/es/json/raw-json.js +6 -0
- package/es/json/stringify.js +1 -4
- package/es/map/constructor.js +2 -0
- package/es/map/get-or-insert-computed.js +10 -0
- package/es/map/get-or-insert.js +10 -0
- package/es/map/group-by.js +2 -0
- package/es/map/index.js +2 -0
- package/es/map/prototype/get-or-insert-computed.js +10 -0
- package/es/map/prototype/get-or-insert.js +10 -0
- package/es/math/f16round.js +6 -0
- package/es/math/index.js +5 -1
- package/es/math/sum-precise.js +9 -0
- package/es/number/instance/to-exponential.js +12 -0
- package/es/number/instance/to-fixed.js +12 -0
- package/es/object/create.js +3 -3
- package/es/object/define-properties.js +3 -3
- package/es/object/define-property.js +3 -3
- package/es/object/from-entries.js +1 -0
- package/es/object/get-own-property-descriptor.js +3 -3
- package/es/object/get-own-property-names.js +3 -3
- package/es/promise/all-settled.js +3 -3
- package/es/promise/all.js +3 -3
- package/es/promise/any.js +3 -3
- package/es/promise/index.js +1 -0
- package/es/promise/race.js +3 -3
- package/es/promise/reject.js +3 -3
- package/es/promise/resolve.js +3 -3
- package/es/promise/try.js +17 -0
- package/es/promise/with-resolvers.js +2 -2
- 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/regexp/escape.js +8 -0
- package/es/regexp/exec.js +2 -0
- package/es/regexp/index.js +3 -0
- package/es/regexp/instance/flags.js +11 -0
- package/es/regexp/test.js +1 -0
- package/es/set/constructor.js +7 -0
- package/es/set/difference.js +10 -0
- package/es/set/index.js +7 -0
- package/es/set/intersection.js +10 -0
- package/es/set/is-disjoint-from.js +10 -0
- package/es/set/is-subset-of.js +10 -0
- package/es/set/is-superset-of.js +10 -0
- 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 +10 -0
- package/es/set/union.js +10 -0
- package/es/string/index.js +2 -2
- 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/iterator.js +1 -1
- package/es/string/match.js +0 -4
- package/es/string/prototype/iterator.js +7 -0
- package/es/string/replace.js +0 -4
- package/es/string/search.js +0 -4
- package/es/string/split.js +0 -4
- 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 +12 -0
- package/es/symbol/dispose.js +7 -0
- package/es/symbol/index.js +2 -0
- 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/from-base64.js +44 -0
- package/es/typed-array/from-hex.js +44 -0
- package/es/typed-array/from.js +41 -0
- package/es/typed-array/index.js +8 -2
- package/es/typed-array/methods.js +48 -0
- package/es/typed-array/of.js +42 -0
- package/es/typed-array/set-from-base64.js +2 -0
- package/es/typed-array/set-from-hex.js +2 -0
- package/es/typed-array/to-base64.js +2 -0
- package/es/typed-array/to-hex.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 +3 -0
- package/es/weak-map/get-or-insert-computed.js +10 -0
- package/es/weak-map/get-or-insert.js +10 -0
- package/es/weak-map/index.js +3 -0
- 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 +1 -0
- package/es/weak-set/index.js +1 -0
- package/full/aggregate-error/constructor.js +2 -0
- package/full/aggregate-error/index.js +3 -0
- package/full/aggregate-error/is-error.js +6 -0
- package/full/array/from-async.js +2 -1
- package/full/array/from.js +2 -0
- package/full/array/index.js +1 -1
- 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/iterator.js +1 -1
- package/full/array/prototype/iterator.js +7 -0
- package/full/array/prototype/values.js +10 -0
- package/full/array/values.js +2 -0
- package/full/array-buffer/detached.js +0 -1
- package/full/async-disposable-stack/constructor.js +4 -4
- package/full/async-disposable-stack/index.js +4 -4
- package/full/async-iterator/constructor.js +1 -1
- package/full/async-iterator/from.js +1 -1
- package/full/async-iterator/index.js +1 -1
- package/full/data-view/constructor.js +3 -2
- package/full/data-view/get-float16.js +1 -1
- package/full/data-view/index.js +3 -2
- package/full/data-view/set-float16.js +2 -1
- package/full/disposable-stack/constructor.js +3 -3
- package/full/disposable-stack/index.js +3 -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/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/error/constructor.js +2 -2
- package/full/error/index.js +3 -2
- package/full/error/is-error.js +6 -0
- 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/instance/name.js +9 -0
- package/full/function/name.js +4 -0
- package/full/index.js +67 -49
- package/full/instance/at.js +2 -2
- package/full/instance/clamp.js +12 -0
- package/full/instance/code-point-at.js +1 -1
- package/full/instance/concat.js +1 -1
- package/full/instance/copy-within.js +1 -1
- package/full/instance/demethodize.js +1 -1
- package/full/instance/ends-with.js +1 -1
- package/full/instance/entries.js +2 -2
- package/full/instance/fill.js +1 -1
- package/full/instance/filter-reject.js +1 -1
- package/full/instance/filter.js +1 -1
- package/full/instance/find-index.js +1 -1
- package/full/instance/find-last-index.js +1 -1
- package/full/instance/find-last.js +1 -1
- package/full/instance/find.js +1 -1
- package/full/instance/flat-map.js +1 -1
- package/full/instance/flat.js +1 -1
- package/full/instance/for-each.js +1 -0
- package/full/instance/includes.js +2 -2
- package/full/instance/index-of.js +1 -1
- package/full/instance/is-well-formed.js +1 -1
- package/full/instance/join.js +11 -0
- package/full/instance/keys.js +2 -2
- package/full/instance/last-index-of.js +1 -1
- package/full/instance/map.js +1 -1
- package/full/instance/match-all.js +1 -1
- package/full/instance/name.js +9 -0
- package/full/instance/pad-end.js +1 -1
- package/full/instance/pad-start.js +1 -1
- package/full/instance/push.js +1 -1
- package/full/instance/reduce-right.js +1 -1
- package/full/instance/reduce.js +1 -1
- package/full/instance/repeat.js +1 -1
- package/full/instance/replace-all.js +1 -1
- package/full/instance/reverse.js +1 -1
- package/full/instance/slice.js +1 -1
- package/full/instance/sort.js +1 -1
- package/full/instance/splice.js +1 -1
- package/full/instance/starts-with.js +1 -1
- package/full/instance/to-exponential.js +12 -0
- package/full/instance/to-fixed.js +12 -0
- package/full/instance/to-reversed.js +1 -1
- package/full/instance/to-sorted.js +1 -1
- package/full/instance/to-spliced.js +1 -1
- package/full/instance/to-well-formed.js +1 -1
- package/full/instance/trim-end.js +1 -1
- package/full/instance/trim-left.js +1 -1
- package/full/instance/trim-right.js +1 -1
- package/full/instance/trim-start.js +1 -1
- package/full/instance/trim.js +1 -1
- package/full/instance/unique-by.js +1 -1
- package/full/instance/unshift.js +1 -1
- package/full/instance/values.js +4 -2
- package/full/instance/with.js +1 -1
- 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/iterator/chunks.js +8 -0
- package/full/iterator/concat.js +33 -0
- package/full/iterator/constructor.js +17 -13
- package/full/iterator/drop.js +2 -2
- package/full/iterator/every.js +5 -2
- package/full/iterator/filter.js +2 -2
- package/full/iterator/find.js +5 -2
- package/full/iterator/flat-map.js +2 -2
- package/full/iterator/for-each.js +5 -2
- package/full/iterator/from.js +18 -14
- package/full/iterator/includes.js +11 -0
- package/full/iterator/index.js +22 -14
- package/full/iterator/join.js +11 -0
- package/full/iterator/map.js +2 -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 +26 -1
- package/full/iterator/reduce.js +5 -2
- package/full/iterator/some.js +5 -2
- package/full/iterator/take.js +2 -2
- package/full/iterator/to-array.js +5 -2
- package/full/iterator/to-async.js +1 -1
- package/full/iterator/windows.js +8 -0
- package/full/iterator/zip-keyed.js +34 -0
- package/full/iterator/zip.js +33 -0
- package/full/json/index.js +3 -3
- package/full/json/is-raw-json.js +1 -1
- package/full/json/parse.js +1 -1
- package/full/json/raw-json.js +1 -1
- package/full/json/stringify.js +1 -4
- package/full/map/constructor.js +2 -1
- package/full/map/from.js +2 -1
- package/full/map/get-or-insert-computed.js +11 -0
- package/full/map/get-or-insert.js +11 -0
- package/full/map/group-by.js +2 -1
- package/full/map/index.js +2 -1
- package/full/map/of.js +2 -1
- package/full/map/prototype/get-or-insert-computed.js +11 -0
- package/full/map/prototype/get-or-insert.js +11 -0
- package/full/math/f16round.js +1 -1
- package/full/math/index.js +6 -2
- package/full/math/sum-precise.js +10 -0
- package/full/number/clamp.js +6 -0
- package/full/number/index.js +1 -0
- 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/prototype/clamp.js +6 -0
- package/full/object/create.js +3 -3
- package/full/object/define-properties.js +3 -3
- package/full/object/define-property.js +3 -3
- package/full/object/from-entries.js +2 -0
- package/full/object/get-own-property-descriptor.js +3 -3
- package/full/object/get-own-property-names.js +3 -3
- package/full/object/index.js +1 -0
- package/full/object/keys-length.js +6 -0
- package/full/promise/all-keyed.js +19 -0
- package/full/promise/all-settled-keyed.js +19 -0
- package/full/promise/all-settled.js +3 -3
- package/full/promise/all.js +3 -3
- package/full/promise/any.js +3 -3
- package/full/promise/index.js +4 -1
- package/full/promise/race.js +3 -3
- package/full/promise/reject.js +3 -3
- package/full/promise/resolve.js +3 -3
- package/full/promise/try.js +4 -4
- package/full/promise/with-resolvers.js +2 -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/regexp/escape.js +3 -1
- package/full/regexp/exec.js +2 -0
- package/full/regexp/index.js +3 -1
- package/full/regexp/instance/flags.js +11 -0
- package/full/regexp/test.js +1 -0
- package/full/set/constructor.js +7 -7
- package/full/set/difference.js +1 -1
- package/full/set/from.js +7 -7
- package/full/set/index.js +7 -7
- package/full/set/intersection.js +1 -1
- package/full/set/is-disjoint-from.js +1 -1
- package/full/set/is-subset-of.js +1 -1
- package/full/set/is-superset-of.js +1 -1
- package/full/set/of.js +7 -7
- 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 +1 -1
- package/full/set/union.js +1 -1
- package/full/string/dedent.js +1 -0
- package/full/string/index.js +3 -3
- 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/iterator.js +1 -1
- package/full/string/match.js +0 -4
- package/full/string/prototype/iterator.js +7 -0
- package/full/string/replace.js +0 -4
- package/full/string/search.js +0 -4
- package/full/string/split.js +0 -4
- package/full/suppressed-error/constructor.js +1 -1
- package/full/suppressed-error/index.js +2 -1
- package/full/suppressed-error/is-error.js +6 -0
- package/full/symbol/async-dispose.js +2 -2
- package/full/symbol/custom-matcher.js +6 -0
- package/full/symbol/dispose.js +2 -2
- package/full/symbol/index.js +3 -3
- 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/constructors.js +18 -0
- package/full/typed-array/from-base64.js +48 -1
- package/full/typed-array/from-hex.js +48 -1
- package/full/typed-array/from.js +45 -0
- package/full/typed-array/index.js +8 -2
- package/full/typed-array/methods.js +52 -0
- package/full/typed-array/of.js +47 -0
- package/full/typed-array/set-from-base64.js +2 -0
- package/full/typed-array/set-from-hex.js +2 -0
- package/full/typed-array/to-base64.js +1 -1
- package/full/typed-array/to-hex.js +1 -1
- 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 +2 -0
- package/full/url/constructor.js +18 -0
- package/full/url/index.js +3 -0
- package/full/url/parse.js +15 -0
- package/full/url/to-json.js +2 -4
- package/full/url-search-params/constructor.js +14 -0
- package/full/url-search-params/index.js +3 -0
- package/full/weak-map/constructor.js +3 -1
- package/full/weak-map/from.js +2 -1
- package/full/weak-map/get-or-insert-computed.js +11 -0
- package/full/weak-map/get-or-insert.js +11 -0
- package/full/weak-map/index.js +2 -1
- package/full/weak-map/of.js +3 -1
- 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 +1 -0
- package/full/weak-set/of.js +1 -0
- package/index.js +58 -44
- package/internals/a-number.js +7 -0
- package/internals/a-weak-key.js +12 -0
- package/internals/add-disposable-resource.js +10 -2
- package/internals/advance-string-index.js +1 -1
- package/internals/array-buffer-is-detached.js +4 -4
- package/internals/array-buffer-not-detached.js +9 -0
- package/internals/array-buffer-transfer.js +7 -5
- package/internals/array-fill.js +2 -1
- package/internals/array-iteration.js +9 -11
- package/internals/array-iterator-constructor.js +1 -1
- package/internals/array-method-has-species-support.js +1 -1
- package/internals/array-species-constructor.js +1 -0
- package/internals/array-unique-by.js +3 -3
- package/internals/async-from-sync-iterator.js +47 -12
- package/internals/async-iterator-close.js +15 -7
- package/internals/async-iterator-create-proxy.js +67 -28
- package/internals/async-iterator-iteration.js +21 -11
- package/internals/check-correctness-of-iteration.js +2 -0
- package/internals/collection-from.js +3 -3
- package/internals/collection-strong.js +12 -11
- package/internals/collection-weak.js +4 -4
- package/internals/detach-transferable.js +2 -2
- package/internals/document-create-element.js +1 -3
- package/internals/does-not-exceed-safe-integer.js +1 -1
- package/internals/environment-ff-version.js +6 -0
- package/internals/environment-is-ie-or-edge.js +4 -0
- package/internals/environment-is-ios-pebble.js +4 -0
- package/internals/environment-is-ios.js +4 -0
- package/internals/environment-is-node.js +4 -0
- package/internals/environment-is-webos-webkit.js +4 -0
- package/internals/environment-user-agent.js +7 -0
- package/internals/environment-v8-version.js +28 -0
- package/internals/environment-webkit-version.js +6 -0
- package/internals/environment.js +21 -0
- package/internals/error-stack-clear.js +1 -1
- package/internals/error-stack-install.js +1 -0
- package/internals/fix-regexp-well-known-symbol-logic.js +6 -4
- package/internals/flatten-into-array.js +3 -2
- package/internals/function-get-name.js +18 -0
- package/internals/function-name.js +1 -1
- package/internals/get-async-iterator-flattenable.js +3 -3
- package/internals/get-built-in-node-module.js +15 -0
- package/internals/get-iterator-direct.js +1 -1
- package/internals/get-iterator-flattenable.js +3 -3
- package/internals/get-iterator-method.js +3 -0
- package/internals/get-iterator-record.js +7 -0
- package/internals/get-mode-option.js +8 -0
- package/internals/get-substitution.js +2 -3
- package/internals/install-error-cause.js +1 -1
- package/internals/iterate.js +8 -3
- package/internals/iterator-cleanup-state.js +5 -0
- package/internals/iterator-close-all.js +16 -0
- package/internals/iterator-create-proxy.js +28 -9
- package/internals/iterator-helper-throws-on-invalid-iterator.js +12 -0
- package/internals/iterator-helper-without-closing-on-early-error.js +23 -0
- package/internals/iterator-zip.js +101 -0
- package/internals/map-helpers.js +1 -1
- package/internals/math-round-ties-to-even.js +7 -0
- package/internals/microtask.js +4 -4
- package/internals/native-raw-json.js +2 -0
- package/internals/object-prototype-accessors-forced.js +3 -2
- package/internals/object-set-prototype-of.js +4 -2
- package/internals/promise-constructor-detection.js +3 -4
- package/internals/regexp-exec-abstract.js +1 -1
- package/internals/regexp-exec.js +19 -13
- package/internals/regexp-flags-detection.js +47 -0
- package/internals/regexp-get-flags.js +8 -5
- package/internals/set-helpers.js +1 -1
- package/internals/set-method-accept-set-like.js +26 -3
- package/internals/set-method-get-keys-before-cloning-detection.js +28 -0
- package/internals/set-to-string-tag.js +1 -1
- package/internals/shared-store.js +3 -3
- package/internals/string-pad-webkit-bug.js +1 -1
- package/internals/string-pad.js +3 -3
- package/internals/string-parse.js +5 -6
- package/internals/structured-clone-proper-transfer.js +3 -5
- package/internals/symbol-constructor-detection.js +1 -1
- package/internals/task.js +2 -2
- package/internals/this-number-value.js +1 -1
- package/internals/to-string-tag-support.js +1 -1
- package/internals/typed-array-constructor.js +1 -0
- package/internals/typed-array-constructors-require-wrappers.js +1 -1
- package/internals/typed-array-from-same-type-and-list.js +7 -0
- package/internals/typed-array-from.js +4 -2
- package/internals/uid.js +1 -1
- package/internals/uint8-from-base64.js +153 -0
- package/internals/uint8-from-hex.js +26 -0
- package/internals/url-constructor-detection.js +5 -5
- package/internals/use-symbol-as-uid.js +3 -3
- package/internals/weak-map-helpers.js +1 -1
- package/internals/weak-set-helpers.js +1 -1
- package/modules/es.aggregate-error.cause.js +3 -1
- package/modules/es.aggregate-error.constructor.js +3 -1
- package/modules/es.array-buffer.constructor.js +5 -6
- package/modules/es.array-buffer.detached.js +3 -0
- package/modules/es.array-buffer.slice.js +1 -2
- 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 +1 -0
- package/modules/es.array.concat.js +3 -2
- package/modules/es.array.find-last-index.js +1 -0
- package/modules/es.array.find-last.js +1 -0
- package/modules/es.array.flat-map.js +3 -1
- package/modules/es.array.flat.js +4 -1
- package/modules/es.array.from-async.js +70 -0
- package/modules/es.array.from.js +11 -5
- package/modules/es.array.includes.js +8 -1
- package/modules/es.array.iterator.js +0 -1
- package/modules/es.array.of.js +2 -1
- package/modules/es.array.reduce-right.js +2 -2
- package/modules/es.array.reduce.js +2 -2
- package/modules/es.array.slice.js +2 -1
- package/modules/es.array.sort.js +8 -10
- package/modules/es.array.splice.js +1 -1
- package/modules/es.array.to-reversed.js +9 -2
- package/modules/es.array.to-sorted.js +2 -1
- package/modules/es.array.to-spliced.js +6 -4
- package/modules/es.array.unshift.js +1 -4
- package/modules/es.array.values.js +1 -1
- package/modules/es.array.with.js +25 -3
- package/modules/es.async-disposable-stack.constructor.js +136 -0
- package/modules/es.async-iterator.async-dispose.js +31 -0
- package/modules/es.data-view.constructor.js +36 -1
- package/modules/es.data-view.get-float16.js +30 -0
- package/modules/es.data-view.set-float16.js +58 -0
- package/modules/es.disposable-stack.constructor.js +111 -0
- package/modules/es.error.cause.js +3 -0
- package/modules/es.error.is-error.js +38 -0
- package/modules/es.function.name.js +5 -15
- package/modules/es.iterator.concat.js +59 -0
- package/modules/es.iterator.constructor.js +66 -0
- package/modules/es.iterator.dispose.js +18 -0
- package/modules/es.iterator.drop.js +55 -0
- package/modules/es.iterator.every.js +32 -0
- package/modules/es.iterator.filter.js +53 -0
- package/modules/es.iterator.find.js +32 -0
- package/modules/es.iterator.flat-map.js +77 -0
- package/modules/es.iterator.for-each.js +32 -0
- package/modules/es.iterator.from.js +37 -0
- package/modules/es.iterator.map.js +46 -0
- package/modules/es.iterator.reduce.js +52 -0
- package/modules/es.iterator.some.js +32 -0
- package/modules/es.iterator.take.js +51 -0
- package/modules/es.iterator.to-array.js +20 -0
- package/modules/es.json.is-raw-json.js +12 -0
- package/modules/es.json.parse.js +257 -0
- package/modules/es.json.raw-json.js +36 -0
- package/modules/es.json.stringify.js +84 -22
- package/modules/es.map.get-or-insert-computed.js +25 -0
- package/modules/es.map.get-or-insert.js +19 -0
- package/modules/es.map.group-by.js +14 -5
- package/modules/es.math.asinh.js +4 -1
- package/modules/es.math.atanh.js +2 -2
- package/modules/es.math.f16round.js +30 -0
- package/modules/es.math.sum-precise.js +152 -0
- package/modules/es.number.parse-float.js +1 -1
- package/modules/es.number.parse-int.js +1 -1
- package/modules/es.number.to-exponential.js +17 -12
- package/modules/es.number.to-fixed.js +2 -2
- package/modules/es.object.define-getter.js +1 -0
- package/modules/es.object.define-setter.js +1 -0
- package/modules/es.object.entries.js +1 -0
- package/modules/es.object.from-entries.js +3 -2
- package/modules/es.object.get-own-property-descriptors.js +1 -0
- package/modules/es.object.group-by.js +18 -6
- package/modules/es.object.has-own.js +1 -0
- package/modules/es.object.lookup-getter.js +1 -0
- package/modules/es.object.lookup-setter.js +1 -0
- package/modules/es.object.proto.js +1 -0
- package/modules/es.object.values.js +1 -0
- package/modules/es.promise.all-settled.js +8 -7
- package/modules/es.promise.all.js +7 -7
- package/modules/es.promise.any.js +9 -8
- package/modules/es.promise.catch.js +1 -1
- package/modules/es.promise.constructor.js +7 -2
- package/modules/es.promise.finally.js +2 -1
- package/modules/es.promise.race.js +7 -7
- package/modules/es.promise.reject.js +3 -3
- package/modules/es.promise.resolve.js +3 -3
- package/modules/es.promise.try.js +37 -0
- package/modules/es.promise.with-resolvers.js +5 -4
- package/modules/es.reflect.construct.js +1 -1
- package/modules/es.reflect.define-property.js +10 -0
- package/modules/es.reflect.delete-property.js +5 -2
- package/modules/es.reflect.get.js +9 -7
- package/modules/es.reflect.set.js +14 -9
- package/modules/es.regexp.constructor.js +27 -8
- package/modules/es.regexp.dot-all.js +1 -0
- package/modules/es.regexp.escape.js +72 -0
- package/modules/es.regexp.exec.js +2 -0
- package/modules/es.regexp.flags.js +11 -50
- package/modules/es.regexp.test.js +1 -0
- 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.symmetric-difference.js +31 -0
- package/modules/es.set.union.js +26 -0
- package/modules/es.string.at.js +2 -1
- package/modules/es.string.ends-with.js +1 -1
- package/modules/es.string.from-code-point.js +2 -2
- package/modules/es.string.is-well-formed.js +2 -1
- package/modules/es.string.match-all.js +4 -3
- package/modules/es.string.match.js +10 -4
- package/modules/es.string.pad-end.js +1 -0
- package/modules/es.string.pad-start.js +1 -0
- package/modules/es.string.repeat.js +2 -1
- package/modules/es.string.replace-all.js +7 -10
- package/modules/es.string.replace.js +12 -9
- package/modules/es.string.search.js +2 -2
- package/modules/es.string.split.js +9 -7
- package/modules/es.string.starts-with.js +1 -1
- package/modules/es.string.to-well-formed.js +3 -2
- package/modules/es.string.trim-end.js +1 -0
- package/modules/es.string.trim-left.js +1 -0
- package/modules/es.string.trim-right.js +1 -0
- package/modules/es.string.trim-start.js +1 -0
- package/modules/es.suppressed-error.constructor.js +54 -0
- package/modules/es.symbol.async-dispose.js +20 -0
- package/modules/es.symbol.async-iterator.js +1 -0
- package/modules/es.symbol.constructor.js +5 -3
- package/modules/es.symbol.description.js +11 -0
- package/modules/es.symbol.dispose.js +20 -0
- package/modules/es.symbol.for.js +2 -2
- package/modules/es.symbol.match-all.js +1 -0
- package/modules/es.typed-array.at.js +1 -0
- package/modules/es.typed-array.entries.js +1 -1
- package/modules/es.typed-array.filter.js +2 -2
- package/modules/es.typed-array.find-last-index.js +1 -0
- package/modules/es.typed-array.find-last.js +1 -0
- package/modules/es.typed-array.includes.js +1 -0
- package/modules/es.typed-array.iterator.js +1 -1
- package/modules/es.typed-array.keys.js +1 -1
- package/modules/es.typed-array.map.js +3 -4
- package/modules/es.typed-array.set.js +2 -2
- package/modules/es.typed-array.slice.js +2 -2
- package/modules/es.typed-array.sort.js +7 -7
- package/modules/es.typed-array.subarray.js +2 -2
- package/modules/es.typed-array.to-locale-string.js +4 -12
- package/modules/es.typed-array.to-reversed.js +8 -2
- package/modules/es.typed-array.to-sorted.js +1 -0
- package/modules/es.typed-array.to-string.js +1 -2
- package/modules/es.typed-array.values.js +1 -1
- package/modules/es.typed-array.with.js +24 -5
- package/modules/es.uint8-array.from-base64.js +31 -0
- package/modules/es.uint8-array.from-hex.js +13 -0
- package/modules/es.uint8-array.set-from-base64.js +36 -0
- package/modules/es.uint8-array.set-from-hex.js +32 -0
- package/modules/es.uint8-array.to-base64.js +56 -0
- package/modules/es.uint8-array.to-hex.js +35 -0
- package/modules/es.weak-map.constructor.js +1 -1
- package/modules/es.weak-map.get-or-insert-computed.js +37 -0
- package/modules/es.weak-map.get-or-insert.js +19 -0
- package/modules/es.weak-set.constructor.js +1 -1
- package/modules/esnext.array.filter-reject.js +1 -0
- package/modules/esnext.array.is-template-object.js +2 -1
- package/modules/esnext.array.unique-by.js +1 -0
- package/modules/esnext.async-iterator.constructor.js +2 -1
- package/modules/esnext.async-iterator.drop.js +3 -3
- package/modules/esnext.async-iterator.every.js +3 -2
- package/modules/esnext.async-iterator.filter.js +3 -3
- package/modules/esnext.async-iterator.find.js +3 -2
- package/modules/esnext.async-iterator.flat-map.js +4 -4
- package/modules/esnext.async-iterator.for-each.js +3 -2
- package/modules/esnext.async-iterator.from.js +3 -3
- package/modules/esnext.async-iterator.map.js +23 -21
- package/modules/esnext.async-iterator.reduce.js +9 -8
- package/modules/esnext.async-iterator.some.js +3 -2
- package/modules/esnext.async-iterator.take.js +7 -5
- package/modules/esnext.async-iterator.to-array.js +3 -2
- package/modules/esnext.data-view.get-uint8-clamped.js +1 -0
- package/modules/esnext.data-view.set-uint8-clamped.js +16 -5
- package/modules/esnext.function.demethodize.js +1 -0
- package/modules/esnext.function.metadata.js +1 -0
- package/modules/esnext.iterator.chunks.js +46 -0
- package/modules/esnext.iterator.includes.js +43 -0
- package/modules/esnext.iterator.join.js +32 -0
- package/modules/esnext.iterator.range.js +11 -6
- package/modules/esnext.iterator.to-async.js +3 -3
- package/modules/esnext.iterator.windows.js +56 -0
- package/modules/esnext.iterator.zip-keyed.js +75 -0
- package/modules/esnext.iterator.zip.js +94 -0
- package/modules/esnext.map.from.js +2 -1
- package/modules/esnext.map.of.js +2 -1
- package/modules/esnext.number.clamp.js +16 -0
- 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 +2 -1
- package/modules/esnext.set.of.js +2 -1
- package/modules/esnext.string.cooked.js +1 -0
- package/modules/esnext.string.dedent.js +2 -0
- package/modules/esnext.symbol.custom-matcher.js +7 -0
- package/modules/esnext.symbol.is-registered-symbol.js +3 -2
- package/modules/esnext.symbol.is-well-known-symbol.js +2 -2
- package/modules/esnext.symbol.metadata.js +1 -0
- package/modules/esnext.typed-array.filter-reject.js +3 -2
- package/modules/esnext.typed-array.unique-by.js +1 -0
- package/modules/esnext.weak-map.from.js +2 -1
- package/modules/esnext.weak-map.of.js +2 -1
- package/modules/esnext.weak-set.from.js +2 -1
- package/modules/esnext.weak-set.of.js +2 -1
- package/modules/web.atob.js +19 -9
- package/modules/web.btoa.js +14 -6
- package/modules/web.clear-immediate.js +1 -0
- package/modules/web.dom-collections.entries.js +2 -1
- package/modules/web.dom-collections.for-each.js +1 -0
- package/modules/web.dom-collections.iterator.js +2 -1
- package/modules/web.dom-collections.keys.js +2 -1
- package/modules/web.dom-collections.values.js +2 -1
- package/modules/web.dom-exception.constructor.js +3 -2
- package/modules/web.dom-exception.stack.js +2 -1
- package/modules/web.dom-exception.to-string-tag.js +1 -0
- package/modules/web.queue-microtask.js +11 -1
- package/modules/web.self.js +1 -0
- package/modules/web.set-immediate.js +3 -2
- package/modules/web.structured-clone.js +15 -9
- package/modules/web.url-search-params.constructor.js +138 -27
- package/modules/web.url-search-params.delete.js +8 -10
- package/modules/web.url-search-params.has.js +2 -1
- package/modules/web.url-search-params.size.js +2 -1
- package/modules/web.url.can-parse.js +9 -2
- package/modules/web.url.constructor.js +73 -40
- package/modules/web.url.parse.js +25 -0
- package/modules/web.url.to-json.js +2 -1
- package/package.json +793 -5
- package/proposals/accessible-object-hasownproperty.js +2 -0
- package/proposals/array-buffer-base64.js +8 -4
- package/proposals/array-buffer-transfer.js +2 -0
- package/proposals/array-filtering.js +2 -0
- package/proposals/array-find-from-last.js +2 -0
- package/proposals/array-flat-map.js +2 -0
- package/proposals/array-from-async.js +4 -1
- package/proposals/array-grouping.js +2 -0
- package/proposals/array-includes.js +2 -0
- package/proposals/array-is-template-object.js +2 -0
- package/proposals/array-unique.js +2 -0
- package/proposals/async-iteration.js +2 -0
- package/proposals/async-iterator-helpers.js +3 -1
- package/proposals/change-array-by-copy.js +2 -0
- package/proposals/collection-of-from.js +2 -0
- package/proposals/data-view-get-set-uint8-clamped.js +2 -0
- package/proposals/decorator-metadata.js +2 -0
- package/proposals/error-cause.js +4 -0
- package/proposals/explicit-resource-management.js +9 -7
- package/proposals/extractors.js +4 -0
- package/proposals/float16.js +6 -3
- package/proposals/function-demethodize.js +2 -0
- package/proposals/global-this.js +2 -0
- package/proposals/is-error.js +4 -0
- package/proposals/iterator-chunking.js +7 -0
- package/proposals/iterator-helpers.js +15 -13
- 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 +9 -0
- package/proposals/joint-iteration.js +11 -0
- package/proposals/json-parse-with-source.js +7 -3
- package/proposals/map-upsert.js +13 -0
- package/proposals/math-clamp.js +4 -0
- package/proposals/math-sum.js +8 -0
- package/proposals/object-from-entries.js +4 -0
- package/proposals/object-getownpropertydescriptors.js +2 -0
- package/proposals/object-keys-length.js +4 -0
- package/proposals/object-values-entries.js +2 -0
- package/proposals/pattern-matching.js +3 -1
- package/proposals/promise-all-keyed.js +11 -0
- package/proposals/promise-all-settled.js +2 -0
- package/proposals/promise-any.js +2 -0
- package/proposals/promise-finally.js +2 -0
- package/proposals/promise-try.js +3 -1
- package/proposals/promise-with-resolvers.js +2 -0
- package/proposals/regexp-dotall-flag.js +2 -0
- package/proposals/regexp-escaping.js +5 -1
- package/proposals/regexp-named-groups.js +2 -0
- package/proposals/relative-indexing-method.js +2 -0
- package/proposals/set-methods.js +9 -7
- package/proposals/string-cooked.js +2 -0
- package/proposals/string-dedent.js +3 -0
- package/proposals/string-left-right-trim.js +2 -0
- package/proposals/string-match-all.js +2 -0
- package/proposals/string-padding.js +2 -0
- package/proposals/string-replace-all.js +2 -0
- package/proposals/symbol-description.js +2 -0
- package/proposals/symbol-predicates.js +2 -0
- package/proposals/well-formed-stringify.js +2 -0
- package/proposals/well-formed-unicode-strings.js +2 -0
- package/stable/aggregate-error/constructor.js +2 -0
- package/stable/aggregate-error/index.js +3 -0
- package/stable/aggregate-error/is-error.js +6 -0
- package/stable/array/from-async.js +14 -0
- package/stable/array/from.js +2 -0
- package/stable/array/index.js +6 -0
- 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 +1 -1
- package/stable/array/prototype/iterator.js +7 -0
- package/stable/array/prototype/values.js +10 -0
- package/stable/array/values.js +2 -0
- package/stable/array-buffer/detached.js +0 -1
- package/stable/async-disposable-stack/constructor.js +14 -0
- package/stable/async-disposable-stack/index.js +14 -0
- package/stable/async-iterator/index.js +11 -0
- package/stable/data-view/constructor.js +3 -0
- package/stable/data-view/get-float16.js +2 -0
- package/stable/data-view/index.js +3 -0
- package/stable/data-view/set-float16.js +3 -0
- package/stable/disposable-stack/constructor.js +9 -0
- package/stable/disposable-stack/index.js +9 -0
- 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/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/error/constructor.js +2 -2
- package/stable/error/index.js +3 -2
- package/stable/error/is-error.js +6 -0
- 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/instance/name.js +9 -0
- package/stable/function/name.js +4 -0
- package/stable/index.js +56 -6
- package/stable/instance/at.js +2 -2
- package/stable/instance/code-point-at.js +1 -1
- package/stable/instance/concat.js +1 -1
- package/stable/instance/copy-within.js +1 -1
- package/stable/instance/ends-with.js +1 -1
- package/stable/instance/entries.js +2 -2
- package/stable/instance/fill.js +1 -1
- package/stable/instance/filter.js +1 -1
- package/stable/instance/find-index.js +1 -1
- package/stable/instance/find-last-index.js +1 -1
- package/stable/instance/find-last.js +1 -1
- package/stable/instance/find.js +1 -1
- package/stable/instance/flat-map.js +1 -1
- package/stable/instance/flat.js +1 -1
- package/stable/instance/for-each.js +1 -0
- package/stable/instance/includes.js +2 -2
- package/stable/instance/index-of.js +1 -1
- package/stable/instance/is-well-formed.js +1 -1
- package/stable/instance/join.js +11 -0
- package/stable/instance/keys.js +2 -2
- package/stable/instance/last-index-of.js +1 -1
- package/stable/instance/map.js +1 -1
- package/stable/instance/match-all.js +1 -1
- package/stable/instance/name.js +9 -0
- package/stable/instance/pad-end.js +1 -1
- package/stable/instance/pad-start.js +1 -1
- package/stable/instance/push.js +1 -1
- package/stable/instance/reduce-right.js +1 -1
- package/stable/instance/reduce.js +1 -1
- package/stable/instance/repeat.js +1 -1
- package/stable/instance/replace-all.js +1 -1
- package/stable/instance/reverse.js +1 -1
- package/stable/instance/slice.js +1 -1
- package/stable/instance/sort.js +1 -1
- package/stable/instance/splice.js +1 -1
- package/stable/instance/starts-with.js +1 -1
- package/stable/instance/to-exponential.js +12 -0
- package/stable/instance/to-fixed.js +12 -0
- package/stable/instance/to-reversed.js +1 -1
- package/stable/instance/to-sorted.js +1 -1
- package/stable/instance/to-spliced.js +1 -1
- package/stable/instance/to-well-formed.js +1 -1
- package/stable/instance/trim-end.js +1 -1
- package/stable/instance/trim-left.js +1 -1
- package/stable/instance/trim-right.js +1 -1
- package/stable/instance/trim-start.js +1 -1
- package/stable/instance/trim.js +1 -1
- package/stable/instance/unshift.js +1 -1
- package/stable/instance/values.js +4 -2
- package/stable/instance/with.js +1 -1
- 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/iterator/concat.js +23 -0
- package/stable/iterator/constructor.js +22 -0
- package/stable/iterator/drop.js +8 -0
- package/stable/iterator/every.js +11 -0
- package/stable/iterator/filter.js +8 -0
- package/stable/iterator/find.js +11 -0
- package/stable/iterator/flat-map.js +11 -0
- package/stable/iterator/for-each.js +11 -0
- package/stable/iterator/from.js +23 -0
- package/stable/iterator/index.js +24 -0
- package/stable/iterator/map.js +8 -0
- 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 +11 -0
- package/stable/iterator/some.js +11 -0
- package/stable/iterator/take.js +8 -0
- package/stable/iterator/to-array.js +11 -0
- package/stable/json/index.js +3 -0
- package/stable/json/is-raw-json.js +6 -0
- package/stable/json/parse.js +6 -0
- package/stable/json/raw-json.js +6 -0
- package/stable/json/stringify.js +1 -4
- package/stable/map/constructor.js +2 -0
- package/stable/map/get-or-insert-computed.js +11 -0
- package/stable/map/get-or-insert.js +11 -0
- package/stable/map/group-by.js +2 -0
- package/stable/map/index.js +2 -0
- package/stable/map/prototype/get-or-insert-computed.js +11 -0
- package/stable/map/prototype/get-or-insert.js +11 -0
- package/stable/math/f16round.js +6 -0
- package/stable/math/index.js +6 -1
- package/stable/math/sum-precise.js +10 -0
- package/stable/number/instance/to-exponential.js +12 -0
- package/stable/number/instance/to-fixed.js +12 -0
- package/stable/object/create.js +3 -3
- package/stable/object/define-properties.js +3 -3
- package/stable/object/define-property.js +3 -3
- package/stable/object/from-entries.js +2 -0
- package/stable/object/get-own-property-descriptor.js +3 -3
- package/stable/object/get-own-property-names.js +3 -3
- package/stable/promise/all-settled.js +3 -3
- package/stable/promise/all.js +3 -3
- package/stable/promise/any.js +3 -3
- package/stable/promise/index.js +1 -0
- package/stable/promise/race.js +3 -3
- package/stable/promise/reject.js +3 -3
- package/stable/promise/resolve.js +3 -3
- package/stable/promise/try.js +17 -0
- package/stable/promise/with-resolvers.js +2 -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/regexp/escape.js +8 -0
- package/stable/regexp/exec.js +2 -0
- package/stable/regexp/index.js +3 -0
- package/stable/regexp/instance/flags.js +11 -0
- package/stable/regexp/test.js +1 -0
- package/stable/set/constructor.js +7 -0
- package/stable/set/difference.js +11 -0
- package/stable/set/index.js +7 -0
- package/stable/set/intersection.js +11 -0
- package/stable/set/is-disjoint-from.js +11 -0
- package/stable/set/is-subset-of.js +11 -0
- package/stable/set/is-superset-of.js +11 -0
- 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 +11 -0
- package/stable/set/union.js +11 -0
- package/stable/string/index.js +2 -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/iterator.js +1 -1
- package/stable/string/match.js +0 -4
- package/stable/string/prototype/iterator.js +7 -0
- package/stable/string/replace.js +0 -4
- package/stable/string/search.js +0 -4
- package/stable/string/split.js +0 -4
- 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 +12 -0
- package/stable/symbol/dispose.js +7 -0
- package/stable/symbol/index.js +2 -0
- 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/constructors.js +18 -0
- package/stable/typed-array/from-base64.js +44 -0
- package/stable/typed-array/from-hex.js +44 -0
- package/stable/typed-array/from.js +42 -0
- package/stable/typed-array/index.js +9 -2
- package/stable/typed-array/methods.js +49 -0
- package/stable/typed-array/of.js +42 -0
- package/stable/typed-array/set-from-base64.js +2 -0
- package/stable/typed-array/set-from-hex.js +2 -0
- package/stable/typed-array/to-base64.js +2 -0
- package/stable/typed-array/to-hex.js +2 -0
- 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 +2 -0
- package/stable/url/constructor.js +18 -0
- package/stable/url/index.js +3 -0
- package/stable/url/parse.js +15 -0
- package/stable/url/to-json.js +2 -4
- package/stable/url-search-params/constructor.js +14 -0
- package/stable/url-search-params/index.js +3 -0
- package/stable/weak-map/constructor.js +3 -0
- package/stable/weak-map/get-or-insert-computed.js +11 -0
- package/stable/weak-map/get-or-insert.js +11 -0
- package/stable/weak-map/index.js +3 -0
- 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 +1 -0
- package/stable/weak-set/index.js +1 -0
- package/stage/0.js +66 -49
- package/stage/1.js +66 -49
- package/stage/2.7.js +318 -0
- package/stage/2.js +65 -48
- package/stage/3.js +57 -44
- package/actual/array/virtual/iterator.js +0 -7
- package/actual/array/virtual/values.js +0 -8
- package/actual/async-iterator/constructor.js +0 -11
- package/actual/async-iterator/from.js +0 -11
- package/actual/iterator/virtual/drop.js +0 -8
- package/actual/iterator/virtual/every.js +0 -8
- package/actual/iterator/virtual/filter.js +0 -8
- package/actual/iterator/virtual/find.js +0 -8
- package/actual/iterator/virtual/flat-map.js +0 -11
- package/actual/iterator/virtual/for-each.js +0 -8
- package/actual/iterator/virtual/map.js +0 -8
- package/actual/iterator/virtual/reduce.js +0 -8
- package/actual/iterator/virtual/some.js +0 -8
- package/actual/iterator/virtual/take.js +0 -8
- package/actual/iterator/virtual/to-array.js +0 -8
- package/actual/set/virtual/difference.js +0 -11
- package/actual/set/virtual/intersection.js +0 -11
- package/actual/set/virtual/is-disjoint-from.js +0 -11
- package/actual/set/virtual/is-subset-of.js +0 -11
- package/actual/set/virtual/is-superset-of.js +0 -11
- package/actual/set/virtual/symmetric-difference.js +0 -11
- package/actual/set/virtual/union.js +0 -11
- package/actual/string/virtual/iterator.js +0 -7
- package/actual/string/virtual/match.js +0 -7
- package/actual/string/virtual/replace.js +0 -7
- package/actual/string/virtual/search.js +0 -7
- package/actual/string/virtual/split.js +0 -7
- package/actual/typed-array/float32-array.js +0 -47
- package/actual/typed-array/float64-array.js +0 -47
- package/actual/typed-array/int16-array.js +0 -47
- package/actual/typed-array/int32-array.js +0 -47
- package/actual/typed-array/int8-array.js +0 -47
- package/actual/typed-array/uint16-array.js +0 -47
- package/actual/typed-array/uint32-array.js +0 -47
- package/actual/typed-array/uint8-array.js +0 -45
- package/actual/typed-array/uint8-clamped-array.js +0 -47
- package/actual/url/virtual/to-json.js +0 -13
- package/es/array/virtual/iterator.js +0 -7
- package/es/array/virtual/values.js +0 -8
- package/es/string/virtual/iterator.js +0 -7
- package/es/string/virtual/match.js +0 -7
- package/es/string/virtual/replace.js +0 -7
- package/es/string/virtual/search.js +0 -7
- package/es/string/virtual/split.js +0 -7
- package/es/typed-array/float32-array.js +0 -45
- package/es/typed-array/float64-array.js +0 -45
- package/es/typed-array/int16-array.js +0 -45
- package/es/typed-array/int32-array.js +0 -45
- package/es/typed-array/int8-array.js +0 -45
- package/es/typed-array/uint16-array.js +0 -45
- package/es/typed-array/uint32-array.js +0 -45
- package/es/typed-array/uint8-array.js +0 -43
- package/es/typed-array/uint8-clamped-array.js +0 -45
- package/full/array/virtual/iterator.js +0 -7
- package/full/array/virtual/values.js +0 -8
- package/full/iterator/virtual/drop.js +0 -8
- package/full/iterator/virtual/every.js +0 -8
- package/full/iterator/virtual/filter.js +0 -8
- package/full/iterator/virtual/find.js +0 -8
- package/full/iterator/virtual/flat-map.js +0 -11
- package/full/iterator/virtual/for-each.js +0 -8
- package/full/iterator/virtual/map.js +0 -8
- package/full/iterator/virtual/reduce.js +0 -8
- package/full/iterator/virtual/some.js +0 -8
- package/full/iterator/virtual/take.js +0 -8
- package/full/iterator/virtual/to-array.js +0 -8
- package/full/iterator/virtual/to-async.js +0 -13
- package/full/map/emplace.js +0 -11
- package/full/map/virtual/emplace.js +0 -11
- package/full/set/virtual/difference.js +0 -11
- package/full/set/virtual/intersection.js +0 -11
- package/full/set/virtual/is-disjoint-from.js +0 -11
- package/full/set/virtual/is-subset-of.js +0 -11
- package/full/set/virtual/is-superset-of.js +0 -11
- package/full/set/virtual/symmetric-difference.js +0 -11
- package/full/set/virtual/union.js +0 -11
- package/full/string/virtual/iterator.js +0 -7
- package/full/string/virtual/match.js +0 -7
- package/full/string/virtual/replace.js +0 -7
- package/full/string/virtual/search.js +0 -7
- package/full/string/virtual/split.js +0 -7
- package/full/symbol/matcher.js +0 -6
- package/full/typed-array/float32-array.js +0 -51
- package/full/typed-array/float64-array.js +0 -51
- package/full/typed-array/int16-array.js +0 -51
- package/full/typed-array/int32-array.js +0 -51
- package/full/typed-array/int8-array.js +0 -51
- package/full/typed-array/uint16-array.js +0 -51
- package/full/typed-array/uint32-array.js +0 -51
- package/full/typed-array/uint8-array.js +0 -49
- package/full/typed-array/uint8-clamped-array.js +0 -51
- package/full/url/virtual/to-json.js +0 -13
- package/full/weak-map/emplace.js +0 -10
- package/full/weak-map/virtual/emplace.js +0 -10
- package/internals/a-map.js +0 -8
- package/internals/array-to-reversed.js +0 -12
- package/internals/array-with.js +0 -18
- package/internals/engine-ff-version.js +0 -6
- package/internals/engine-is-browser.js +0 -7
- package/internals/engine-is-bun.js +0 -3
- package/internals/engine-is-deno.js +0 -3
- package/internals/engine-is-ie-or-edge.js +0 -4
- package/internals/engine-is-ios-pebble.js +0 -4
- package/internals/engine-is-ios.js +0 -5
- package/internals/engine-is-node.js +0 -5
- package/internals/engine-is-webos-webkit.js +0 -4
- package/internals/engine-user-agent.js +0 -2
- package/internals/engine-v8-version.js +0 -28
- package/internals/engine-webkit-version.js +0 -6
- package/internals/get-json-replacer-function.js +0 -30
- package/internals/ieee754.js +0 -103
- package/internals/math-f16round.js +0 -30
- package/internals/try-node-require.js +0 -9
- package/internals/typed-array-from-species-and-list.js +0 -7
- package/internals/typed-array-species-constructor.js +0 -10
- package/modules/esnext.array.from-async.js +0 -60
- package/modules/esnext.async-disposable-stack.constructor.js +0 -133
- package/modules/esnext.async-iterator.async-dispose.js +0 -30
- package/modules/esnext.data-view.get-float16.js +0 -15
- package/modules/esnext.data-view.set-float16.js +0 -20
- package/modules/esnext.disposable-stack.constructor.js +0 -112
- package/modules/esnext.iterator.constructor.js +0 -65
- package/modules/esnext.iterator.dispose.js +0 -17
- package/modules/esnext.iterator.drop.js +0 -37
- package/modules/esnext.iterator.every.js +0 -21
- package/modules/esnext.iterator.filter.js +0 -36
- package/modules/esnext.iterator.find.js +0 -21
- package/modules/esnext.iterator.flat-map.js +0 -46
- package/modules/esnext.iterator.for-each.js +0 -21
- package/modules/esnext.iterator.from.js +0 -25
- package/modules/esnext.iterator.map.js +0 -29
- package/modules/esnext.iterator.reduce.js +0 -33
- package/modules/esnext.iterator.some.js +0 -21
- package/modules/esnext.iterator.take.js +0 -34
- package/modules/esnext.iterator.to-array.js +0 -18
- package/modules/esnext.json.is-raw-json.js +0 -11
- package/modules/esnext.json.parse.js +0 -244
- package/modules/esnext.json.raw-json.js +0 -82
- package/modules/esnext.map.emplace.js +0 -27
- package/modules/esnext.math.f16round.js +0 -7
- package/modules/esnext.promise.try.js +0 -18
- package/modules/esnext.regexp.escape.js +0 -20
- package/modules/esnext.set.difference.js +0 -30
- package/modules/esnext.set.intersection.js +0 -41
- package/modules/esnext.set.is-disjoint-from.js +0 -26
- package/modules/esnext.set.is-subset-of.js +0 -20
- package/modules/esnext.set.is-superset-of.js +0 -23
- package/modules/esnext.set.symmetric-difference.js +0 -27
- package/modules/esnext.set.union.js +0 -22
- package/modules/esnext.suppressed-error.constructor.js +0 -35
- package/modules/esnext.symbol.async-dispose.js +0 -19
- package/modules/esnext.symbol.dispose.js +0 -19
- package/modules/esnext.symbol.matcher.js +0 -6
- package/modules/esnext.uint8-array.from-base64.js +0 -72
- package/modules/esnext.uint8-array.from-hex.js +0 -27
- package/modules/esnext.uint8-array.to-base64.js +0 -42
- package/modules/esnext.uint8-array.to-hex.js +0 -20
- package/modules/esnext.weak-map.emplace.js +0 -27
- package/postinstall.js +0 -62
- package/proposals/map-emplace.js +0 -9
- package/stable/array/virtual/iterator.js +0 -7
- package/stable/array/virtual/values.js +0 -8
- package/stable/string/virtual/iterator.js +0 -7
- package/stable/string/virtual/match.js +0 -7
- package/stable/string/virtual/replace.js +0 -7
- package/stable/string/virtual/search.js +0 -7
- package/stable/string/virtual/split.js +0 -7
- package/stable/typed-array/float32-array.js +0 -45
- package/stable/typed-array/float64-array.js +0 -45
- package/stable/typed-array/int16-array.js +0 -45
- package/stable/typed-array/int32-array.js +0 -45
- package/stable/typed-array/int8-array.js +0 -45
- package/stable/typed-array/uint16-array.js +0 -45
- package/stable/typed-array/uint32-array.js +0 -45
- package/stable/typed-array/uint8-array.js +0 -43
- package/stable/typed-array/uint8-clamped-array.js +0 -45
- package/stable/url/virtual/to-json.js +0 -13
- /package/actual/array/{virtual → prototype}/at.js +0 -0
- /package/actual/array/{virtual → prototype}/concat.js +0 -0
- /package/actual/array/{virtual → prototype}/copy-within.js +0 -0
- /package/actual/array/{virtual → prototype}/entries.js +0 -0
- /package/actual/array/{virtual → prototype}/fill.js +0 -0
- /package/actual/array/{virtual → prototype}/filter.js +0 -0
- /package/actual/array/{virtual → prototype}/find-index.js +0 -0
- /package/actual/array/{virtual → prototype}/find-last-index.js +0 -0
- /package/actual/array/{virtual → prototype}/find-last.js +0 -0
- /package/actual/array/{virtual → prototype}/find.js +0 -0
- /package/actual/array/{virtual → prototype}/flat-map.js +0 -0
- /package/actual/array/{virtual → prototype}/flat.js +0 -0
- /package/actual/array/{virtual → prototype}/includes.js +0 -0
- /package/actual/array/{virtual → prototype}/index-of.js +0 -0
- /package/actual/array/{virtual → prototype}/join.js +0 -0
- /package/actual/array/{virtual → prototype}/keys.js +0 -0
- /package/actual/array/{virtual → prototype}/last-index-of.js +0 -0
- /package/actual/array/{virtual → prototype}/map.js +0 -0
- /package/actual/array/{virtual → prototype}/push.js +0 -0
- /package/actual/array/{virtual → prototype}/reduce-right.js +0 -0
- /package/actual/array/{virtual → prototype}/reduce.js +0 -0
- /package/actual/array/{virtual → prototype}/reverse.js +0 -0
- /package/actual/array/{virtual → prototype}/slice.js +0 -0
- /package/actual/array/{virtual → prototype}/sort.js +0 -0
- /package/actual/array/{virtual → prototype}/splice.js +0 -0
- /package/actual/array/{virtual → prototype}/to-reversed.js +0 -0
- /package/actual/array/{virtual → prototype}/to-sorted.js +0 -0
- /package/actual/array/{virtual → prototype}/to-spliced.js +0 -0
- /package/actual/array/{virtual → prototype}/unshift.js +0 -0
- /package/actual/array/{virtual → prototype}/with.js +0 -0
- /package/actual/date/{virtual → prototype}/to-json.js +0 -0
- /package/actual/number/{virtual → prototype}/to-exponential.js +0 -0
- /package/actual/number/{virtual → prototype}/to-fixed.js +0 -0
- /package/actual/object/{virtual → prototype}/define-getter.js +0 -0
- /package/actual/object/{virtual → prototype}/define-setter.js +0 -0
- /package/actual/object/{virtual → prototype}/lookup-getter.js +0 -0
- /package/actual/object/{virtual → prototype}/lookup-setter.js +0 -0
- /package/actual/object/{virtual → prototype}/to-string.js +0 -0
- /package/actual/promise/{virtual → prototype}/catch.js +0 -0
- /package/actual/promise/{virtual → prototype}/finally.js +0 -0
- /package/actual/string/{virtual → prototype}/anchor.js +0 -0
- /package/actual/string/{virtual → prototype}/at.js +0 -0
- /package/actual/string/{virtual → prototype}/big.js +0 -0
- /package/actual/string/{virtual → prototype}/blink.js +0 -0
- /package/actual/string/{virtual → prototype}/bold.js +0 -0
- /package/actual/string/{virtual → prototype}/code-point-at.js +0 -0
- /package/actual/string/{virtual → prototype}/ends-with.js +0 -0
- /package/actual/string/{virtual → prototype}/fixed.js +0 -0
- /package/actual/string/{virtual → prototype}/fontcolor.js +0 -0
- /package/actual/string/{virtual → prototype}/fontsize.js +0 -0
- /package/actual/string/{virtual → prototype}/includes.js +0 -0
- /package/actual/string/{virtual → prototype}/is-well-formed.js +0 -0
- /package/actual/string/{virtual → prototype}/italics.js +0 -0
- /package/actual/string/{virtual → prototype}/link.js +0 -0
- /package/actual/string/{virtual → prototype}/match-all.js +0 -0
- /package/actual/string/{virtual → prototype}/pad-end.js +0 -0
- /package/actual/string/{virtual → prototype}/pad-start.js +0 -0
- /package/actual/string/{virtual → prototype}/repeat.js +0 -0
- /package/actual/string/{virtual → prototype}/replace-all.js +0 -0
- /package/actual/string/{virtual → prototype}/small.js +0 -0
- /package/actual/string/{virtual → prototype}/starts-with.js +0 -0
- /package/actual/string/{virtual → prototype}/strike.js +0 -0
- /package/actual/string/{virtual → prototype}/sub.js +0 -0
- /package/actual/string/{virtual → prototype}/sup.js +0 -0
- /package/actual/string/{virtual → prototype}/to-well-formed.js +0 -0
- /package/actual/string/{virtual → prototype}/trim-end.js +0 -0
- /package/actual/string/{virtual → prototype}/trim-left.js +0 -0
- /package/actual/string/{virtual → prototype}/trim-right.js +0 -0
- /package/actual/string/{virtual → prototype}/trim-start.js +0 -0
- /package/actual/string/{virtual → prototype}/trim.js +0 -0
- /package/es/array/{virtual → prototype}/at.js +0 -0
- /package/es/array/{virtual → prototype}/concat.js +0 -0
- /package/es/array/{virtual → prototype}/copy-within.js +0 -0
- /package/es/array/{virtual → prototype}/entries.js +0 -0
- /package/es/array/{virtual → prototype}/fill.js +0 -0
- /package/es/array/{virtual → prototype}/filter.js +0 -0
- /package/es/array/{virtual → prototype}/find-index.js +0 -0
- /package/es/array/{virtual → prototype}/find-last-index.js +0 -0
- /package/es/array/{virtual → prototype}/find-last.js +0 -0
- /package/es/array/{virtual → prototype}/find.js +0 -0
- /package/es/array/{virtual → prototype}/flat-map.js +0 -0
- /package/es/array/{virtual → prototype}/flat.js +0 -0
- /package/es/array/{virtual → prototype}/includes.js +0 -0
- /package/es/array/{virtual → prototype}/index-of.js +0 -0
- /package/es/array/{virtual → prototype}/join.js +0 -0
- /package/es/array/{virtual → prototype}/keys.js +0 -0
- /package/es/array/{virtual → prototype}/last-index-of.js +0 -0
- /package/es/array/{virtual → prototype}/map.js +0 -0
- /package/es/array/{virtual → prototype}/push.js +0 -0
- /package/es/array/{virtual → prototype}/reduce-right.js +0 -0
- /package/es/array/{virtual → prototype}/reduce.js +0 -0
- /package/es/array/{virtual → prototype}/reverse.js +0 -0
- /package/es/array/{virtual → prototype}/slice.js +0 -0
- /package/es/array/{virtual → prototype}/sort.js +0 -0
- /package/es/array/{virtual → prototype}/splice.js +0 -0
- /package/es/array/{virtual → prototype}/to-reversed.js +0 -0
- /package/es/array/{virtual → prototype}/to-sorted.js +0 -0
- /package/es/array/{virtual → prototype}/to-spliced.js +0 -0
- /package/es/array/{virtual → prototype}/unshift.js +0 -0
- /package/es/array/{virtual → prototype}/with.js +0 -0
- /package/es/date/{virtual → prototype}/to-json.js +0 -0
- /package/es/number/{virtual → prototype}/to-exponential.js +0 -0
- /package/es/number/{virtual → prototype}/to-fixed.js +0 -0
- /package/es/object/{virtual → prototype}/define-getter.js +0 -0
- /package/es/object/{virtual → prototype}/define-setter.js +0 -0
- /package/es/object/{virtual → prototype}/lookup-getter.js +0 -0
- /package/es/object/{virtual → prototype}/lookup-setter.js +0 -0
- /package/es/object/{virtual → prototype}/to-string.js +0 -0
- /package/es/promise/{virtual → prototype}/catch.js +0 -0
- /package/es/promise/{virtual → prototype}/finally.js +0 -0
- /package/es/string/{virtual → prototype}/anchor.js +0 -0
- /package/es/string/{virtual → prototype}/at.js +0 -0
- /package/es/string/{virtual → prototype}/big.js +0 -0
- /package/es/string/{virtual → prototype}/blink.js +0 -0
- /package/es/string/{virtual → prototype}/bold.js +0 -0
- /package/es/string/{virtual → prototype}/code-point-at.js +0 -0
- /package/es/string/{virtual → prototype}/ends-with.js +0 -0
- /package/es/string/{virtual → prototype}/fixed.js +0 -0
- /package/es/string/{virtual → prototype}/fontcolor.js +0 -0
- /package/es/string/{virtual → prototype}/fontsize.js +0 -0
- /package/es/string/{virtual → prototype}/includes.js +0 -0
- /package/es/string/{virtual → prototype}/is-well-formed.js +0 -0
- /package/es/string/{virtual → prototype}/italics.js +0 -0
- /package/es/string/{virtual → prototype}/link.js +0 -0
- /package/es/string/{virtual → prototype}/match-all.js +0 -0
- /package/es/string/{virtual → prototype}/pad-end.js +0 -0
- /package/es/string/{virtual → prototype}/pad-start.js +0 -0
- /package/es/string/{virtual → prototype}/repeat.js +0 -0
- /package/es/string/{virtual → prototype}/replace-all.js +0 -0
- /package/es/string/{virtual → prototype}/small.js +0 -0
- /package/es/string/{virtual → prototype}/starts-with.js +0 -0
- /package/es/string/{virtual → prototype}/strike.js +0 -0
- /package/es/string/{virtual → prototype}/sub.js +0 -0
- /package/es/string/{virtual → prototype}/sup.js +0 -0
- /package/es/string/{virtual → prototype}/to-well-formed.js +0 -0
- /package/es/string/{virtual → prototype}/trim-end.js +0 -0
- /package/es/string/{virtual → prototype}/trim-left.js +0 -0
- /package/es/string/{virtual → prototype}/trim-right.js +0 -0
- /package/es/string/{virtual → prototype}/trim-start.js +0 -0
- /package/es/string/{virtual → prototype}/trim.js +0 -0
- /package/full/array/{virtual → prototype}/at.js +0 -0
- /package/full/array/{virtual → prototype}/concat.js +0 -0
- /package/full/array/{virtual → prototype}/copy-within.js +0 -0
- /package/full/array/{virtual → prototype}/entries.js +0 -0
- /package/full/array/{virtual → prototype}/fill.js +0 -0
- /package/full/array/{virtual → prototype}/filter-reject.js +0 -0
- /package/full/array/{virtual → prototype}/filter.js +0 -0
- /package/full/array/{virtual → prototype}/find-index.js +0 -0
- /package/full/array/{virtual → prototype}/find-last-index.js +0 -0
- /package/full/array/{virtual → prototype}/find-last.js +0 -0
- /package/full/array/{virtual → prototype}/find.js +0 -0
- /package/full/array/{virtual → prototype}/flat-map.js +0 -0
- /package/full/array/{virtual → prototype}/flat.js +0 -0
- /package/full/array/{virtual → prototype}/includes.js +0 -0
- /package/full/array/{virtual → prototype}/index-of.js +0 -0
- /package/full/array/{virtual → prototype}/join.js +0 -0
- /package/full/array/{virtual → prototype}/keys.js +0 -0
- /package/full/array/{virtual → prototype}/last-index-of.js +0 -0
- /package/full/array/{virtual → prototype}/map.js +0 -0
- /package/full/array/{virtual → prototype}/push.js +0 -0
- /package/full/array/{virtual → prototype}/reduce-right.js +0 -0
- /package/full/array/{virtual → prototype}/reduce.js +0 -0
- /package/full/array/{virtual → prototype}/reverse.js +0 -0
- /package/full/array/{virtual → prototype}/slice.js +0 -0
- /package/full/array/{virtual → prototype}/sort.js +0 -0
- /package/full/array/{virtual → prototype}/splice.js +0 -0
- /package/full/array/{virtual → prototype}/to-reversed.js +0 -0
- /package/full/array/{virtual → prototype}/to-sorted.js +0 -0
- /package/full/array/{virtual → prototype}/to-spliced.js +0 -0
- /package/full/array/{virtual → prototype}/unique-by.js +0 -0
- /package/full/array/{virtual → prototype}/unshift.js +0 -0
- /package/full/array/{virtual → prototype}/with.js +0 -0
- /package/full/async-iterator/{virtual → prototype}/drop.js +0 -0
- /package/full/async-iterator/{virtual → prototype}/every.js +0 -0
- /package/full/async-iterator/{virtual → prototype}/filter.js +0 -0
- /package/full/async-iterator/{virtual → prototype}/find.js +0 -0
- /package/full/async-iterator/{virtual → prototype}/flat-map.js +0 -0
- /package/full/async-iterator/{virtual → prototype}/for-each.js +0 -0
- /package/full/async-iterator/{virtual → prototype}/map.js +0 -0
- /package/full/async-iterator/{virtual → prototype}/reduce.js +0 -0
- /package/full/async-iterator/{virtual → prototype}/some.js +0 -0
- /package/full/async-iterator/{virtual → prototype}/take.js +0 -0
- /package/full/async-iterator/{virtual → prototype}/to-array.js +0 -0
- /package/full/date/{virtual → prototype}/to-json.js +0 -0
- /package/full/function/{virtual → prototype}/demethodize.js +0 -0
- /package/full/number/{virtual → prototype}/to-exponential.js +0 -0
- /package/full/number/{virtual → prototype}/to-fixed.js +0 -0
- /package/full/object/{virtual → prototype}/define-getter.js +0 -0
- /package/full/object/{virtual → prototype}/define-setter.js +0 -0
- /package/full/object/{virtual → prototype}/lookup-getter.js +0 -0
- /package/full/object/{virtual → prototype}/lookup-setter.js +0 -0
- /package/full/object/{virtual → prototype}/to-string.js +0 -0
- /package/full/promise/{virtual → prototype}/catch.js +0 -0
- /package/full/promise/{virtual → prototype}/finally.js +0 -0
- /package/full/string/{virtual → prototype}/anchor.js +0 -0
- /package/full/string/{virtual → prototype}/at.js +0 -0
- /package/full/string/{virtual → prototype}/big.js +0 -0
- /package/full/string/{virtual → prototype}/blink.js +0 -0
- /package/full/string/{virtual → prototype}/bold.js +0 -0
- /package/full/string/{virtual → prototype}/code-point-at.js +0 -0
- /package/full/string/{virtual → prototype}/ends-with.js +0 -0
- /package/full/string/{virtual → prototype}/fixed.js +0 -0
- /package/full/string/{virtual → prototype}/fontcolor.js +0 -0
- /package/full/string/{virtual → prototype}/fontsize.js +0 -0
- /package/full/string/{virtual → prototype}/includes.js +0 -0
- /package/full/string/{virtual → prototype}/is-well-formed.js +0 -0
- /package/full/string/{virtual → prototype}/italics.js +0 -0
- /package/full/string/{virtual → prototype}/link.js +0 -0
- /package/full/string/{virtual → prototype}/match-all.js +0 -0
- /package/full/string/{virtual → prototype}/pad-end.js +0 -0
- /package/full/string/{virtual → prototype}/pad-start.js +0 -0
- /package/full/string/{virtual → prototype}/repeat.js +0 -0
- /package/full/string/{virtual → prototype}/replace-all.js +0 -0
- /package/full/string/{virtual → prototype}/small.js +0 -0
- /package/full/string/{virtual → prototype}/starts-with.js +0 -0
- /package/full/string/{virtual → prototype}/strike.js +0 -0
- /package/full/string/{virtual → prototype}/sub.js +0 -0
- /package/full/string/{virtual → prototype}/sup.js +0 -0
- /package/full/string/{virtual → prototype}/to-well-formed.js +0 -0
- /package/full/string/{virtual → prototype}/trim-end.js +0 -0
- /package/full/string/{virtual → prototype}/trim-left.js +0 -0
- /package/full/string/{virtual → prototype}/trim-right.js +0 -0
- /package/full/string/{virtual → prototype}/trim-start.js +0 -0
- /package/full/string/{virtual → prototype}/trim.js +0 -0
- /package/internals/{engine-is-ie11.js → environment-is-ie11.js} +0 -0
- /package/stable/array/{virtual → prototype}/at.js +0 -0
- /package/stable/array/{virtual → prototype}/concat.js +0 -0
- /package/stable/array/{virtual → prototype}/copy-within.js +0 -0
- /package/stable/array/{virtual → prototype}/entries.js +0 -0
- /package/stable/array/{virtual → prototype}/fill.js +0 -0
- /package/stable/array/{virtual → prototype}/filter.js +0 -0
- /package/stable/array/{virtual → prototype}/find-index.js +0 -0
- /package/stable/array/{virtual → prototype}/find-last-index.js +0 -0
- /package/stable/array/{virtual → prototype}/find-last.js +0 -0
- /package/stable/array/{virtual → prototype}/find.js +0 -0
- /package/stable/array/{virtual → prototype}/flat-map.js +0 -0
- /package/stable/array/{virtual → prototype}/flat.js +0 -0
- /package/stable/array/{virtual → prototype}/includes.js +0 -0
- /package/stable/array/{virtual → prototype}/index-of.js +0 -0
- /package/stable/array/{virtual → prototype}/join.js +0 -0
- /package/stable/array/{virtual → prototype}/keys.js +0 -0
- /package/stable/array/{virtual → prototype}/last-index-of.js +0 -0
- /package/stable/array/{virtual → prototype}/map.js +0 -0
- /package/stable/array/{virtual → prototype}/push.js +0 -0
- /package/stable/array/{virtual → prototype}/reduce-right.js +0 -0
- /package/stable/array/{virtual → prototype}/reduce.js +0 -0
- /package/stable/array/{virtual → prototype}/reverse.js +0 -0
- /package/stable/array/{virtual → prototype}/slice.js +0 -0
- /package/stable/array/{virtual → prototype}/sort.js +0 -0
- /package/stable/array/{virtual → prototype}/splice.js +0 -0
- /package/stable/array/{virtual → prototype}/to-reversed.js +0 -0
- /package/stable/array/{virtual → prototype}/to-sorted.js +0 -0
- /package/stable/array/{virtual → prototype}/to-spliced.js +0 -0
- /package/stable/array/{virtual → prototype}/unshift.js +0 -0
- /package/stable/array/{virtual → prototype}/with.js +0 -0
- /package/stable/date/{virtual → prototype}/to-json.js +0 -0
- /package/stable/number/{virtual → prototype}/to-exponential.js +0 -0
- /package/stable/number/{virtual → prototype}/to-fixed.js +0 -0
- /package/stable/object/{virtual → prototype}/define-getter.js +0 -0
- /package/stable/object/{virtual → prototype}/define-setter.js +0 -0
- /package/stable/object/{virtual → prototype}/lookup-getter.js +0 -0
- /package/stable/object/{virtual → prototype}/lookup-setter.js +0 -0
- /package/stable/object/{virtual → prototype}/to-string.js +0 -0
- /package/stable/promise/{virtual → prototype}/catch.js +0 -0
- /package/stable/promise/{virtual → prototype}/finally.js +0 -0
- /package/stable/string/{virtual → prototype}/anchor.js +0 -0
- /package/stable/string/{virtual → prototype}/at.js +0 -0
- /package/stable/string/{virtual → prototype}/big.js +0 -0
- /package/stable/string/{virtual → prototype}/blink.js +0 -0
- /package/stable/string/{virtual → prototype}/bold.js +0 -0
- /package/stable/string/{virtual → prototype}/code-point-at.js +0 -0
- /package/stable/string/{virtual → prototype}/ends-with.js +0 -0
- /package/stable/string/{virtual → prototype}/fixed.js +0 -0
- /package/stable/string/{virtual → prototype}/fontcolor.js +0 -0
- /package/stable/string/{virtual → prototype}/fontsize.js +0 -0
- /package/stable/string/{virtual → prototype}/includes.js +0 -0
- /package/stable/string/{virtual → prototype}/is-well-formed.js +0 -0
- /package/stable/string/{virtual → prototype}/italics.js +0 -0
- /package/stable/string/{virtual → prototype}/link.js +0 -0
- /package/stable/string/{virtual → prototype}/match-all.js +0 -0
- /package/stable/string/{virtual → prototype}/pad-end.js +0 -0
- /package/stable/string/{virtual → prototype}/pad-start.js +0 -0
- /package/stable/string/{virtual → prototype}/repeat.js +0 -0
- /package/stable/string/{virtual → prototype}/replace-all.js +0 -0
- /package/stable/string/{virtual → prototype}/small.js +0 -0
- /package/stable/string/{virtual → prototype}/starts-with.js +0 -0
- /package/stable/string/{virtual → prototype}/strike.js +0 -0
- /package/stable/string/{virtual → prototype}/sub.js +0 -0
- /package/stable/string/{virtual → prototype}/sup.js +0 -0
- /package/stable/string/{virtual → prototype}/to-well-formed.js +0 -0
- /package/stable/string/{virtual → prototype}/trim-end.js +0 -0
- /package/stable/string/{virtual → prototype}/trim-left.js +0 -0
- /package/stable/string/{virtual → prototype}/trim-right.js +0 -0
- /package/stable/string/{virtual → prototype}/trim-start.js +0 -0
- /package/stable/string/{virtual → prototype}/trim.js +0 -0
package/LICENSE
CHANGED
|
@@ -1,19 +1,32 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
The
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
1
|
+
## core-js experimental version license
|
|
2
|
+
|
|
3
|
+
### Copyright (c) 2013–2025 Denis Pushkarev (zloirock.ru)
|
|
4
|
+
### Copyright (c) 2025–2026 CoreJS Company (core-js.io)
|
|
5
|
+
|
|
6
|
+
### Non-Commercial Use Only
|
|
7
|
+
* The Software may be used strictly for non-commercial purposes. Any commercial use — including but not limited to selling, sublicensing, using in commercial services, or including in commercial products — is expressly prohibited.
|
|
8
|
+
|
|
9
|
+
### Experimental Use Only
|
|
10
|
+
* The Software is provided solely for experimental, research, and evaluation purposes. The user acknowledges that the Software is in a pre-release or developmental stage and may be unstable, contain bugs, or be incomplete.
|
|
11
|
+
|
|
12
|
+
### Term of the License
|
|
13
|
+
* This license is valid only until an official stable version 4 of core-js is released.
|
|
14
|
+
* Within 7 calendar days of such release, the user must either:
|
|
15
|
+
- Transition to the stable version under its applicable license, or
|
|
16
|
+
- Cease all use of this experimental version.
|
|
17
|
+
* Continued use beyond this period is strictly prohibited.
|
|
18
|
+
|
|
19
|
+
### Disclaimer of Warranty
|
|
20
|
+
* The Software is provided "as is", without warranty of any kind, express or implied, including but not limited to warranties of merchantability, fitness for a particular purpose, or non-infringement.
|
|
21
|
+
|
|
22
|
+
### Limited Redistribution
|
|
23
|
+
* Redistribution of the Software as part of a non-commercial website or web-based project is permitted, provided that:
|
|
24
|
+
- The Software is not modified, and
|
|
25
|
+
- It is used solely in accordance with the terms of this license.
|
|
26
|
+
* Any other form of redistribution, sublicense, or share is prohibited without prior written permission from the copyright holder.
|
|
27
|
+
|
|
28
|
+
### Prohibition on Use for AI Training
|
|
29
|
+
* The Software, including its source code and any derived works, may not be used, in whole or in part, for the training or fine-tuning of machine learning models or artificial intelligence systems, whether commercial or non-commercial, without explicit prior written permission from the copyright holder.
|
|
30
|
+
|
|
31
|
+
### Governing Law
|
|
32
|
+
* This license shall be governed by and construed in accordance with the laws of the State of Delaware, United States of America, without regard to its conflict of law principles.
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
**I highly recommend reading this: [So, what's next?](https://github.com/zloirock/core-js/blob/master/docs/2023-02-14-so-whats-next.md)**
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
-
>
|
|
12
|
+
> [`core-js`](https://core-js.io) is a modular standard library for JavaScript. Includes polyfills for ECMAScript up to 2026: [promises](https://core-js.io/docs/features/ecmascript/promise), [symbols](https://core-js.io/docs/features/ecmascript/symbol), [collections](https://core-js.io/docs/features/ecmascript/collections), [iterators](https://core-js.io/docs/features/ecmascript/iterator), [typed arrays](https://core-js.io/docs/features/ecmascript/typed-arrays), many other features, ECMAScript proposals, some cross-platform WHATWG / W3C features and proposals like [`URL`](https://core-js.io/docs/features/web-standards/url-and-urlsearchparams). You can load only required features or use it without global namespace pollution.
|
|
13
13
|
|
|
14
14
|
## Raising funds
|
|
15
15
|
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
|
|
26
26
|
---
|
|
27
27
|
|
|
28
|
-
[*Example of usage*](https://tinyurl.com/
|
|
28
|
+
[*Example of usage*](https://tinyurl.com/28zqjbun):
|
|
29
29
|
```js
|
|
30
30
|
import 'core-js/actual';
|
|
31
31
|
|
|
32
|
-
Promise.
|
|
32
|
+
Promise.try(() => 42).then(it => console.log(it)); // => 42
|
|
33
33
|
|
|
34
34
|
Array.from(new Set([1, 2, 3]).union(new Set([3, 4, 5]))); // => [1, 2, 3, 4, 5]
|
|
35
35
|
|
|
36
36
|
[1, 2].flatMap(it => [it, it]); // => [1, 1, 2, 2]
|
|
37
37
|
|
|
38
|
-
(function * (i) { while (true) yield i++; }
|
|
38
|
+
Iterator.concat([1, 2], function * (i) { while (true) yield i++; }(3))
|
|
39
39
|
.drop(1).take(5)
|
|
40
40
|
.filter(it => it % 2)
|
|
41
41
|
.map(it => it ** 2)
|
|
@@ -53,13 +53,13 @@ import 'core-js/actual/array/from';
|
|
|
53
53
|
import 'core-js/actual/array/flat-map';
|
|
54
54
|
import 'core-js/actual/structured-clone';
|
|
55
55
|
|
|
56
|
-
Promise.
|
|
56
|
+
Promise.try(() => 42).then(it => console.log(it)); // => 42
|
|
57
57
|
|
|
58
58
|
Array.from(new Set([1, 2, 3]).union(new Set([3, 4, 5]))); // => [1, 2, 3, 4, 5]
|
|
59
59
|
|
|
60
60
|
[1, 2].flatMap(it => [it, it]); // => [1, 1, 2, 2]
|
|
61
61
|
|
|
62
|
-
(function * (i) { while (true) yield i++; }
|
|
62
|
+
Iterator.concat([1, 2], function * (i) { while (true) yield i++; }(3))
|
|
63
63
|
.drop(1).take(5)
|
|
64
64
|
.filter(it => it % 2)
|
|
65
65
|
.map(it => it ** 2)
|
|
@@ -77,13 +77,13 @@ import from from '@core-js/pure/actual/array/from';
|
|
|
77
77
|
import flatMap from '@core-js/pure/actual/array/flat-map';
|
|
78
78
|
import structuredClone from '@core-js/pure/actual/structured-clone';
|
|
79
79
|
|
|
80
|
-
Promise.
|
|
80
|
+
Promise.try(() => 42).then(it => console.log(it)); // => 42
|
|
81
81
|
|
|
82
82
|
from(new Set([1, 2, 3]).union(new Set([3, 4, 5]))); // => [1, 2, 3, 4, 5]
|
|
83
83
|
|
|
84
84
|
flatMap([1, 2], it => [it, it]); // => [1, 1, 2, 2]
|
|
85
85
|
|
|
86
|
-
Iterator.
|
|
86
|
+
Iterator.concat([1, 2], function * (i) { while (true) yield i++; }(3))
|
|
87
87
|
.drop(1).take(5)
|
|
88
88
|
.filter(it => it % 2)
|
|
89
89
|
.map(it => it ** 2)
|
|
@@ -92,4 +92,4 @@ Iterator.from(function * (i) { while (true) yield i++; }(1))
|
|
|
92
92
|
structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
|
|
93
93
|
```
|
|
94
94
|
|
|
95
|
-
**It's a global version (first 2 examples), for more info see [`core-js` documentation](https://
|
|
95
|
+
**It's a global version (first 2 examples), for more info see [`core-js` documentation](https://core-js.io).**
|
|
@@ -3,6 +3,8 @@ require('../../modules/es.object.to-string');
|
|
|
3
3
|
require('../../modules/es.aggregate-error.constructor');
|
|
4
4
|
require('../../modules/es.aggregate-error.cause');
|
|
5
5
|
require('../../modules/es.array.iterator');
|
|
6
|
+
require('../../modules/es.string.iterator');
|
|
7
|
+
require('../../modules/web.dom-collections.iterator');
|
|
6
8
|
|
|
7
9
|
var path = require('../../internals/path');
|
|
8
10
|
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
require('../../modules/es.object.to-string');
|
|
3
|
+
require('../../modules/es.error.is-error');
|
|
3
4
|
require('../../modules/es.aggregate-error.constructor');
|
|
4
5
|
require('../../modules/es.aggregate-error.cause');
|
|
5
6
|
require('../../modules/es.array.iterator');
|
|
7
|
+
require('../../modules/es.string.iterator');
|
|
8
|
+
require('../../modules/web.dom-collections.iterator');
|
|
6
9
|
|
|
7
10
|
var path = require('../../internals/path');
|
|
8
11
|
|
|
@@ -5,8 +5,9 @@ require('../../modules/es.promise.catch');
|
|
|
5
5
|
require('../../modules/es.promise.finally');
|
|
6
6
|
require('../../modules/es.promise.resolve');
|
|
7
7
|
require('../../modules/es.array.iterator');
|
|
8
|
+
require('../../modules/es.array.from-async');
|
|
8
9
|
require('../../modules/es.string.iterator');
|
|
9
|
-
require('../../modules/
|
|
10
|
+
require('../../modules/web.dom-collections.iterator');
|
|
10
11
|
|
|
11
12
|
var getBuiltInStaticMethod = require('../../internals/get-built-in-static-method');
|
|
12
13
|
|
package/actual/array/from.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
require('../../modules/es.object.to-string');
|
|
3
|
+
require('../../modules/es.array.iterator');
|
|
3
4
|
require('../../modules/es.array.from');
|
|
4
5
|
require('../../modules/es.string.iterator');
|
|
6
|
+
require('../../modules/web.dom-collections.iterator');
|
|
5
7
|
|
|
6
8
|
var getBuiltInStaticMethod = require('../../internals/get-built-in-static-method');
|
|
7
9
|
|
package/actual/array/index.js
CHANGED
|
@@ -5,6 +5,7 @@ require('../../modules/es.promise.catch');
|
|
|
5
5
|
require('../../modules/es.promise.finally');
|
|
6
6
|
require('../../modules/es.promise.resolve');
|
|
7
7
|
require('../../modules/es.array.iterator');
|
|
8
|
+
require('../../modules/es.array.from-async');
|
|
8
9
|
require('../../modules/es.array.at');
|
|
9
10
|
require('../../modules/es.array.concat');
|
|
10
11
|
require('../../modules/es.array.copy-within');
|
|
@@ -42,7 +43,7 @@ require('../../modules/es.array.unshift');
|
|
|
42
43
|
require('../../modules/es.array.values');
|
|
43
44
|
require('../../modules/es.array.with');
|
|
44
45
|
require('../../modules/es.string.iterator');
|
|
45
|
-
require('../../modules/
|
|
46
|
+
require('../../modules/web.dom-collections.iterator');
|
|
46
47
|
|
|
47
48
|
var path = require('../../internals/path');
|
|
48
49
|
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/at');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.at;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.at)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/concat');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.concat;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.concat)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/copy-within');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.copyWithin;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.copyWithin)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/entries');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.entries;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.entries)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/fill');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.fill;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.fill)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/filter');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.filter;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.filter)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/find-index');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.findIndex;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.findIndex)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/find-last-index');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.findLastIndex;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.findLastIndex)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/find-last');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.findLast;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.findLast)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/find');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.find;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.find)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/flat-map');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.flatMap;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.flatMap)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/flat');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.flat;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.flat)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/includes');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.includes;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.includes)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/index-of');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.indexOf;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.indexOf)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/join');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.join;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.join)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/keys');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.keys;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.keys)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/last-index-of');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.lastIndexOf;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.lastIndexOf)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/map');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.map;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.map)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/push');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.push;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.push)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/reduce-right');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.reduceRight;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.reduceRight)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/reduce');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.reduce;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.reduce)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/reverse');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.reverse;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.reverse)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/slice');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.slice;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.slice)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/sort');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.sort;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.sort)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/splice');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.splice;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.splice)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/to-reversed');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.toReversed;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.toReversed)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/to-sorted');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.toSorted;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.toSorted)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/to-spliced');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.toSpliced;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.toSpliced)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/unshift');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.unshift;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.unshift)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/values');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.values;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.values)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
var isPrototypeOf = require('../../../internals/object-is-prototype-of');
|
|
3
|
+
var arrayMethod = require('../../array/prototype/with');
|
|
4
|
+
|
|
5
|
+
var ArrayPrototype = Array.prototype;
|
|
6
|
+
|
|
7
|
+
module.exports = function (it) {
|
|
8
|
+
var ownProperty = it.with;
|
|
9
|
+
if (it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && ownProperty === ArrayPrototype.with)) return arrayMethod;
|
|
10
|
+
return ownProperty;
|
|
11
|
+
};
|
package/actual/array/iterator.js
CHANGED
|
@@ -5,4 +5,4 @@ require('../../modules/es.array.iterator');
|
|
|
5
5
|
var uncurryThis = require('../../internals/function-uncurry-this');
|
|
6
6
|
var getIteratorMethod = require('../../internals/get-iterator-method');
|
|
7
7
|
|
|
8
|
-
module.exports = uncurryThis(getIteratorMethod(
|
|
8
|
+
module.exports = uncurryThis(getIteratorMethod(Array()));
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
require('../../../modules/es.object.to-string');
|
|
3
|
+
require('../../../modules/es.array.iterator');
|
|
4
|
+
require('../../../modules/es.array.values');
|
|
5
|
+
require('../../../modules/es.string.iterator');
|
|
6
|
+
require('../../../modules/web.dom-collections.iterator');
|
|
7
|
+
|
|
8
|
+
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
|
9
|
+
|
|
10
|
+
module.exports = getBuiltInPrototypeMethod('Array', 'values');
|
package/actual/array/values.js
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
require('../../modules/es.object.to-string');
|
|
3
3
|
require('../../modules/es.array.iterator');
|
|
4
4
|
require('../../modules/es.array.values');
|
|
5
|
+
require('../../modules/es.string.iterator');
|
|
6
|
+
require('../../modules/web.dom-collections.iterator');
|
|
5
7
|
|
|
6
8
|
var entryUnbind = require('../../internals/entry-unbind');
|
|
7
9
|
|