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.
Files changed (3354) hide show
  1. package/LICENSE +32 -19
  2. package/README.md +9 -9
  3. package/actual/aggregate-error/constructor.js +2 -0
  4. package/actual/aggregate-error/index.js +3 -0
  5. package/actual/aggregate-error/is-error.js +6 -0
  6. package/actual/array/from-async.js +2 -1
  7. package/actual/array/from.js +2 -0
  8. package/actual/array/index.js +2 -1
  9. package/actual/array/instance/at.js +11 -0
  10. package/actual/array/instance/concat.js +11 -0
  11. package/actual/array/instance/copy-within.js +11 -0
  12. package/actual/array/instance/entries.js +11 -0
  13. package/actual/array/instance/fill.js +11 -0
  14. package/actual/array/instance/filter.js +11 -0
  15. package/actual/array/instance/find-index.js +11 -0
  16. package/actual/array/instance/find-last-index.js +11 -0
  17. package/actual/array/instance/find-last.js +11 -0
  18. package/actual/array/instance/find.js +11 -0
  19. package/actual/array/instance/flat-map.js +11 -0
  20. package/actual/array/instance/flat.js +11 -0
  21. package/actual/array/instance/includes.js +11 -0
  22. package/actual/array/instance/index-of.js +11 -0
  23. package/actual/array/instance/join.js +11 -0
  24. package/actual/array/instance/keys.js +11 -0
  25. package/actual/array/instance/last-index-of.js +11 -0
  26. package/actual/array/instance/map.js +11 -0
  27. package/actual/array/instance/push.js +11 -0
  28. package/actual/array/instance/reduce-right.js +11 -0
  29. package/actual/array/instance/reduce.js +11 -0
  30. package/actual/array/instance/reverse.js +11 -0
  31. package/actual/array/instance/slice.js +11 -0
  32. package/actual/array/instance/sort.js +11 -0
  33. package/actual/array/instance/splice.js +11 -0
  34. package/actual/array/instance/to-reversed.js +11 -0
  35. package/actual/array/instance/to-sorted.js +11 -0
  36. package/actual/array/instance/to-spliced.js +11 -0
  37. package/actual/array/instance/unshift.js +11 -0
  38. package/actual/array/instance/values.js +11 -0
  39. package/actual/array/instance/with.js +11 -0
  40. package/actual/array/iterator.js +1 -1
  41. package/actual/array/prototype/iterator.js +7 -0
  42. package/actual/array/prototype/values.js +10 -0
  43. package/actual/array/values.js +2 -0
  44. package/actual/array-buffer/detached.js +0 -1
  45. package/actual/async-disposable-stack/constructor.js +4 -4
  46. package/actual/async-disposable-stack/index.js +4 -4
  47. package/actual/async-iterator/index.js +1 -1
  48. package/actual/data-view/constructor.js +3 -2
  49. package/actual/data-view/get-float16.js +1 -1
  50. package/actual/data-view/index.js +3 -2
  51. package/actual/data-view/set-float16.js +2 -1
  52. package/actual/disposable-stack/constructor.js +3 -3
  53. package/actual/disposable-stack/index.js +3 -3
  54. package/actual/dom-collections/instance/entries.js +21 -0
  55. package/actual/dom-collections/instance/for-each.js +19 -0
  56. package/actual/dom-collections/instance/keys.js +21 -0
  57. package/actual/dom-collections/instance/values.js +21 -0
  58. package/actual/dom-collections/prototype/entries.js +8 -0
  59. package/actual/dom-collections/prototype/for-each.js +6 -0
  60. package/actual/dom-collections/prototype/keys.js +8 -0
  61. package/actual/dom-collections/prototype/values.js +8 -0
  62. package/actual/error/constructor.js +2 -2
  63. package/actual/error/index.js +3 -2
  64. package/actual/error/is-error.js +6 -0
  65. package/actual/eval-error/constructor.js +6 -0
  66. package/actual/eval-error/index.js +7 -0
  67. package/actual/eval-error/is-error.js +6 -0
  68. package/actual/float32-array/at.js +2 -0
  69. package/actual/float32-array/constructor.js +46 -0
  70. package/actual/float32-array/copy-within.js +2 -0
  71. package/actual/float32-array/entries.js +4 -0
  72. package/actual/float32-array/every.js +2 -0
  73. package/actual/float32-array/fill.js +2 -0
  74. package/actual/float32-array/filter.js +2 -0
  75. package/actual/float32-array/find-index.js +2 -0
  76. package/actual/float32-array/find-last-index.js +2 -0
  77. package/actual/float32-array/find-last.js +2 -0
  78. package/actual/float32-array/find.js +2 -0
  79. package/actual/float32-array/for-each.js +2 -0
  80. package/actual/float32-array/from.js +42 -0
  81. package/actual/float32-array/includes.js +2 -0
  82. package/actual/float32-array/index-of.js +2 -0
  83. package/actual/float32-array/index.js +48 -0
  84. package/actual/float32-array/iterator.js +4 -0
  85. package/actual/float32-array/join.js +2 -0
  86. package/actual/float32-array/keys.js +4 -0
  87. package/actual/float32-array/last-index-of.js +2 -0
  88. package/actual/float32-array/map.js +2 -0
  89. package/actual/float32-array/of.js +40 -0
  90. package/actual/float32-array/reduce-right.js +2 -0
  91. package/actual/float32-array/reduce.js +2 -0
  92. package/actual/float32-array/reverse.js +2 -0
  93. package/actual/float32-array/set.js +2 -0
  94. package/actual/float32-array/slice.js +2 -0
  95. package/actual/float32-array/some.js +2 -0
  96. package/actual/float32-array/sort.js +2 -0
  97. package/actual/float32-array/subarray.js +2 -0
  98. package/actual/float32-array/to-locale-string.js +2 -0
  99. package/actual/float32-array/to-reversed.js +2 -0
  100. package/actual/float32-array/to-sorted.js +2 -0
  101. package/actual/float32-array/to-string.js +2 -0
  102. package/actual/float32-array/values.js +5 -0
  103. package/actual/float32-array/with.js +2 -0
  104. package/actual/float64-array/at.js +2 -0
  105. package/actual/float64-array/constructor.js +46 -0
  106. package/actual/float64-array/copy-within.js +2 -0
  107. package/actual/float64-array/entries.js +4 -0
  108. package/actual/float64-array/every.js +2 -0
  109. package/actual/float64-array/fill.js +2 -0
  110. package/actual/float64-array/filter.js +2 -0
  111. package/actual/float64-array/find-index.js +2 -0
  112. package/actual/float64-array/find-last-index.js +2 -0
  113. package/actual/float64-array/find-last.js +2 -0
  114. package/actual/float64-array/find.js +2 -0
  115. package/actual/float64-array/for-each.js +2 -0
  116. package/actual/float64-array/from.js +42 -0
  117. package/actual/float64-array/includes.js +2 -0
  118. package/actual/float64-array/index-of.js +2 -0
  119. package/actual/float64-array/index.js +48 -0
  120. package/actual/float64-array/iterator.js +4 -0
  121. package/actual/float64-array/join.js +2 -0
  122. package/actual/float64-array/keys.js +4 -0
  123. package/actual/float64-array/last-index-of.js +2 -0
  124. package/actual/float64-array/map.js +2 -0
  125. package/actual/float64-array/of.js +40 -0
  126. package/actual/float64-array/reduce-right.js +2 -0
  127. package/actual/float64-array/reduce.js +2 -0
  128. package/actual/float64-array/reverse.js +2 -0
  129. package/actual/float64-array/set.js +2 -0
  130. package/actual/float64-array/slice.js +2 -0
  131. package/actual/float64-array/some.js +2 -0
  132. package/actual/float64-array/sort.js +2 -0
  133. package/actual/float64-array/subarray.js +2 -0
  134. package/actual/float64-array/to-locale-string.js +2 -0
  135. package/actual/float64-array/to-reversed.js +2 -0
  136. package/actual/float64-array/to-sorted.js +2 -0
  137. package/actual/float64-array/to-string.js +2 -0
  138. package/actual/float64-array/values.js +5 -0
  139. package/actual/float64-array/with.js +2 -0
  140. package/actual/function/instance/name.js +9 -0
  141. package/actual/function/name.js +4 -0
  142. package/actual/index.js +58 -44
  143. package/actual/instance/at.js +2 -2
  144. package/actual/instance/code-point-at.js +1 -1
  145. package/actual/instance/concat.js +1 -1
  146. package/actual/instance/copy-within.js +1 -1
  147. package/actual/instance/ends-with.js +1 -1
  148. package/actual/instance/entries.js +2 -2
  149. package/actual/instance/fill.js +1 -1
  150. package/actual/instance/filter.js +1 -1
  151. package/actual/instance/find-index.js +1 -1
  152. package/actual/instance/find-last-index.js +1 -1
  153. package/actual/instance/find-last.js +1 -1
  154. package/actual/instance/find.js +1 -1
  155. package/actual/instance/flat-map.js +1 -1
  156. package/actual/instance/flat.js +1 -1
  157. package/actual/instance/for-each.js +1 -0
  158. package/actual/instance/includes.js +2 -2
  159. package/actual/instance/index-of.js +1 -1
  160. package/actual/instance/is-well-formed.js +1 -1
  161. package/actual/instance/join.js +11 -0
  162. package/actual/instance/keys.js +2 -2
  163. package/actual/instance/last-index-of.js +1 -1
  164. package/actual/instance/map.js +1 -1
  165. package/actual/instance/match-all.js +1 -1
  166. package/actual/instance/name.js +9 -0
  167. package/actual/instance/pad-end.js +1 -1
  168. package/actual/instance/pad-start.js +1 -1
  169. package/actual/instance/push.js +1 -1
  170. package/actual/instance/reduce-right.js +1 -1
  171. package/actual/instance/reduce.js +1 -1
  172. package/actual/instance/repeat.js +1 -1
  173. package/actual/instance/replace-all.js +1 -1
  174. package/actual/instance/reverse.js +1 -1
  175. package/actual/instance/slice.js +1 -1
  176. package/actual/instance/sort.js +1 -1
  177. package/actual/instance/splice.js +1 -1
  178. package/actual/instance/starts-with.js +1 -1
  179. package/actual/instance/to-exponential.js +12 -0
  180. package/actual/instance/to-fixed.js +12 -0
  181. package/actual/instance/to-reversed.js +1 -1
  182. package/actual/instance/to-sorted.js +1 -1
  183. package/actual/instance/to-spliced.js +1 -1
  184. package/actual/instance/to-well-formed.js +1 -1
  185. package/actual/instance/trim-end.js +1 -1
  186. package/actual/instance/trim-left.js +1 -1
  187. package/actual/instance/trim-right.js +1 -1
  188. package/actual/instance/trim-start.js +1 -1
  189. package/actual/instance/trim.js +1 -1
  190. package/actual/instance/unshift.js +1 -1
  191. package/actual/instance/values.js +4 -2
  192. package/actual/instance/with.js +1 -1
  193. package/actual/int16-array/at.js +2 -0
  194. package/actual/int16-array/constructor.js +46 -0
  195. package/actual/int16-array/copy-within.js +2 -0
  196. package/actual/int16-array/entries.js +4 -0
  197. package/actual/int16-array/every.js +2 -0
  198. package/actual/int16-array/fill.js +2 -0
  199. package/actual/int16-array/filter.js +2 -0
  200. package/actual/int16-array/find-index.js +2 -0
  201. package/actual/int16-array/find-last-index.js +2 -0
  202. package/actual/int16-array/find-last.js +2 -0
  203. package/actual/int16-array/find.js +2 -0
  204. package/actual/int16-array/for-each.js +2 -0
  205. package/actual/int16-array/from.js +42 -0
  206. package/actual/int16-array/includes.js +2 -0
  207. package/actual/int16-array/index-of.js +2 -0
  208. package/actual/int16-array/index.js +48 -0
  209. package/actual/int16-array/iterator.js +4 -0
  210. package/actual/int16-array/join.js +2 -0
  211. package/actual/int16-array/keys.js +4 -0
  212. package/actual/int16-array/last-index-of.js +2 -0
  213. package/actual/int16-array/map.js +2 -0
  214. package/actual/int16-array/of.js +40 -0
  215. package/actual/int16-array/reduce-right.js +2 -0
  216. package/actual/int16-array/reduce.js +2 -0
  217. package/actual/int16-array/reverse.js +2 -0
  218. package/actual/int16-array/set.js +2 -0
  219. package/actual/int16-array/slice.js +2 -0
  220. package/actual/int16-array/some.js +2 -0
  221. package/actual/int16-array/sort.js +2 -0
  222. package/actual/int16-array/subarray.js +2 -0
  223. package/actual/int16-array/to-locale-string.js +2 -0
  224. package/actual/int16-array/to-reversed.js +2 -0
  225. package/actual/int16-array/to-sorted.js +2 -0
  226. package/actual/int16-array/to-string.js +2 -0
  227. package/actual/int16-array/values.js +5 -0
  228. package/actual/int16-array/with.js +2 -0
  229. package/actual/int32-array/at.js +2 -0
  230. package/actual/int32-array/constructor.js +46 -0
  231. package/actual/int32-array/copy-within.js +2 -0
  232. package/actual/int32-array/entries.js +4 -0
  233. package/actual/int32-array/every.js +2 -0
  234. package/actual/int32-array/fill.js +2 -0
  235. package/actual/int32-array/filter.js +2 -0
  236. package/actual/int32-array/find-index.js +2 -0
  237. package/actual/int32-array/find-last-index.js +2 -0
  238. package/actual/int32-array/find-last.js +2 -0
  239. package/actual/int32-array/find.js +2 -0
  240. package/actual/int32-array/for-each.js +2 -0
  241. package/actual/int32-array/from.js +42 -0
  242. package/actual/int32-array/includes.js +2 -0
  243. package/actual/int32-array/index-of.js +2 -0
  244. package/actual/int32-array/index.js +48 -0
  245. package/actual/int32-array/iterator.js +4 -0
  246. package/actual/int32-array/join.js +2 -0
  247. package/actual/int32-array/keys.js +4 -0
  248. package/actual/int32-array/last-index-of.js +2 -0
  249. package/actual/int32-array/map.js +2 -0
  250. package/actual/int32-array/of.js +40 -0
  251. package/actual/int32-array/reduce-right.js +2 -0
  252. package/actual/int32-array/reduce.js +2 -0
  253. package/actual/int32-array/reverse.js +2 -0
  254. package/actual/int32-array/set.js +2 -0
  255. package/actual/int32-array/slice.js +2 -0
  256. package/actual/int32-array/some.js +2 -0
  257. package/actual/int32-array/sort.js +2 -0
  258. package/actual/int32-array/subarray.js +2 -0
  259. package/actual/int32-array/to-locale-string.js +2 -0
  260. package/actual/int32-array/to-reversed.js +2 -0
  261. package/actual/int32-array/to-sorted.js +2 -0
  262. package/actual/int32-array/to-string.js +2 -0
  263. package/actual/int32-array/values.js +5 -0
  264. package/actual/int32-array/with.js +2 -0
  265. package/actual/int8-array/at.js +2 -0
  266. package/actual/int8-array/constructor.js +46 -0
  267. package/actual/int8-array/copy-within.js +2 -0
  268. package/actual/int8-array/entries.js +4 -0
  269. package/actual/int8-array/every.js +2 -0
  270. package/actual/int8-array/fill.js +2 -0
  271. package/actual/int8-array/filter.js +2 -0
  272. package/actual/int8-array/find-index.js +2 -0
  273. package/actual/int8-array/find-last-index.js +2 -0
  274. package/actual/int8-array/find-last.js +2 -0
  275. package/actual/int8-array/find.js +2 -0
  276. package/actual/int8-array/for-each.js +2 -0
  277. package/actual/int8-array/from.js +42 -0
  278. package/actual/int8-array/includes.js +2 -0
  279. package/actual/int8-array/index-of.js +2 -0
  280. package/actual/int8-array/index.js +48 -0
  281. package/actual/int8-array/iterator.js +4 -0
  282. package/actual/int8-array/join.js +2 -0
  283. package/actual/int8-array/keys.js +4 -0
  284. package/actual/int8-array/last-index-of.js +2 -0
  285. package/actual/int8-array/map.js +2 -0
  286. package/actual/int8-array/of.js +40 -0
  287. package/actual/int8-array/reduce-right.js +2 -0
  288. package/actual/int8-array/reduce.js +2 -0
  289. package/actual/int8-array/reverse.js +2 -0
  290. package/actual/int8-array/set.js +2 -0
  291. package/actual/int8-array/slice.js +2 -0
  292. package/actual/int8-array/some.js +2 -0
  293. package/actual/int8-array/sort.js +2 -0
  294. package/actual/int8-array/subarray.js +2 -0
  295. package/actual/int8-array/to-locale-string.js +2 -0
  296. package/actual/int8-array/to-reversed.js +2 -0
  297. package/actual/int8-array/to-sorted.js +2 -0
  298. package/actual/int8-array/to-string.js +2 -0
  299. package/actual/int8-array/values.js +5 -0
  300. package/actual/int8-array/with.js +2 -0
  301. package/actual/iterator/concat.js +23 -0
  302. package/actual/iterator/constructor.js +13 -13
  303. package/actual/iterator/drop.js +2 -2
  304. package/actual/iterator/every.js +5 -2
  305. package/actual/iterator/filter.js +2 -2
  306. package/actual/iterator/find.js +5 -2
  307. package/actual/iterator/flat-map.js +2 -2
  308. package/actual/iterator/for-each.js +5 -2
  309. package/actual/iterator/from.js +14 -14
  310. package/actual/iterator/index.js +18 -14
  311. package/actual/iterator/map.js +2 -2
  312. package/actual/iterator/prototype/drop.js +8 -0
  313. package/actual/iterator/prototype/every.js +11 -0
  314. package/actual/iterator/prototype/filter.js +8 -0
  315. package/actual/iterator/prototype/find.js +11 -0
  316. package/actual/iterator/prototype/flat-map.js +11 -0
  317. package/actual/iterator/prototype/for-each.js +11 -0
  318. package/actual/iterator/prototype/map.js +8 -0
  319. package/actual/iterator/prototype/reduce.js +11 -0
  320. package/actual/iterator/prototype/some.js +11 -0
  321. package/actual/iterator/prototype/take.js +8 -0
  322. package/actual/iterator/prototype/to-array.js +11 -0
  323. package/actual/iterator/reduce.js +5 -2
  324. package/actual/iterator/some.js +5 -2
  325. package/actual/iterator/take.js +2 -2
  326. package/actual/iterator/to-array.js +5 -2
  327. package/actual/iterator/zip-keyed.js +24 -0
  328. package/actual/iterator/zip.js +23 -0
  329. package/actual/json/index.js +3 -3
  330. package/actual/json/is-raw-json.js +1 -1
  331. package/actual/json/parse.js +1 -1
  332. package/actual/json/raw-json.js +1 -1
  333. package/actual/json/stringify.js +1 -4
  334. package/actual/map/constructor.js +2 -0
  335. package/actual/map/get-or-insert-computed.js +11 -0
  336. package/actual/map/get-or-insert.js +11 -0
  337. package/actual/map/group-by.js +2 -0
  338. package/actual/map/index.js +2 -0
  339. package/actual/map/prototype/get-or-insert-computed.js +11 -0
  340. package/actual/map/prototype/get-or-insert.js +11 -0
  341. package/actual/math/f16round.js +1 -1
  342. package/actual/math/index.js +6 -2
  343. package/actual/math/sum-precise.js +10 -0
  344. package/actual/number/instance/to-exponential.js +12 -0
  345. package/actual/number/instance/to-fixed.js +12 -0
  346. package/actual/object/create.js +3 -3
  347. package/actual/object/define-properties.js +3 -3
  348. package/actual/object/define-property.js +3 -3
  349. package/actual/object/from-entries.js +2 -0
  350. package/actual/object/get-own-property-descriptor.js +3 -3
  351. package/actual/object/get-own-property-names.js +3 -3
  352. package/actual/promise/all-settled.js +3 -3
  353. package/actual/promise/all.js +3 -3
  354. package/actual/promise/any.js +3 -3
  355. package/actual/promise/index.js +1 -0
  356. package/actual/promise/race.js +3 -3
  357. package/actual/promise/reject.js +3 -3
  358. package/actual/promise/resolve.js +3 -3
  359. package/actual/promise/try.js +17 -0
  360. package/actual/promise/with-resolvers.js +2 -2
  361. package/actual/range-error/constructor.js +6 -0
  362. package/actual/range-error/index.js +7 -0
  363. package/actual/range-error/is-error.js +6 -0
  364. package/actual/reference-error/constructor.js +6 -0
  365. package/actual/reference-error/index.js +7 -0
  366. package/actual/reference-error/is-error.js +6 -0
  367. package/actual/regexp/escape.js +8 -0
  368. package/actual/regexp/exec.js +2 -0
  369. package/actual/regexp/index.js +3 -0
  370. package/actual/regexp/instance/flags.js +11 -0
  371. package/actual/regexp/test.js +1 -0
  372. package/actual/set/constructor.js +7 -7
  373. package/actual/set/difference.js +1 -1
  374. package/actual/set/index.js +7 -7
  375. package/actual/set/intersection.js +1 -1
  376. package/actual/set/is-disjoint-from.js +1 -1
  377. package/actual/set/is-subset-of.js +1 -1
  378. package/actual/set/is-superset-of.js +1 -1
  379. package/actual/set/prototype/difference.js +11 -0
  380. package/actual/set/prototype/intersection.js +11 -0
  381. package/actual/set/prototype/is-disjoint-from.js +11 -0
  382. package/actual/set/prototype/is-subset-of.js +11 -0
  383. package/actual/set/prototype/is-superset-of.js +11 -0
  384. package/actual/set/prototype/symmetric-difference.js +11 -0
  385. package/actual/set/prototype/union.js +11 -0
  386. package/actual/set/symmetric-difference.js +1 -1
  387. package/actual/set/union.js +1 -1
  388. package/actual/string/index.js +2 -2
  389. package/actual/string/instance/anchor.js +12 -0
  390. package/actual/string/instance/at.js +12 -0
  391. package/actual/string/instance/big.js +12 -0
  392. package/actual/string/instance/blink.js +12 -0
  393. package/actual/string/instance/bold.js +12 -0
  394. package/actual/string/instance/code-point-at.js +12 -0
  395. package/actual/string/instance/ends-with.js +12 -0
  396. package/actual/string/instance/fixed.js +12 -0
  397. package/actual/string/instance/fontcolor.js +12 -0
  398. package/actual/string/instance/fontsize.js +12 -0
  399. package/actual/string/instance/includes.js +12 -0
  400. package/actual/string/instance/is-well-formed.js +12 -0
  401. package/actual/string/instance/italics.js +12 -0
  402. package/actual/string/instance/link.js +12 -0
  403. package/actual/string/instance/match-all.js +12 -0
  404. package/actual/string/instance/pad-end.js +12 -0
  405. package/actual/string/instance/pad-start.js +12 -0
  406. package/actual/string/instance/repeat.js +12 -0
  407. package/actual/string/instance/replace-all.js +12 -0
  408. package/actual/string/instance/small.js +12 -0
  409. package/actual/string/instance/starts-with.js +12 -0
  410. package/actual/string/instance/strike.js +12 -0
  411. package/actual/string/instance/sub.js +12 -0
  412. package/actual/string/instance/sup.js +12 -0
  413. package/actual/string/instance/to-well-formed.js +12 -0
  414. package/actual/string/instance/trim-end.js +12 -0
  415. package/actual/string/instance/trim-left.js +12 -0
  416. package/actual/string/instance/trim-right.js +12 -0
  417. package/actual/string/instance/trim-start.js +12 -0
  418. package/actual/string/instance/trim.js +12 -0
  419. package/actual/string/iterator.js +1 -1
  420. package/actual/string/match.js +0 -4
  421. package/actual/string/prototype/iterator.js +7 -0
  422. package/actual/string/replace.js +0 -4
  423. package/actual/string/search.js +0 -4
  424. package/actual/string/split.js +0 -4
  425. package/actual/suppressed-error/constructor.js +1 -1
  426. package/actual/suppressed-error/index.js +2 -1
  427. package/actual/suppressed-error/is-error.js +6 -0
  428. package/actual/symbol/async-dispose.js +2 -2
  429. package/actual/symbol/dispose.js +2 -2
  430. package/actual/symbol/index.js +2 -2
  431. package/actual/syntax-error/constructor.js +6 -0
  432. package/actual/syntax-error/index.js +7 -0
  433. package/actual/syntax-error/is-error.js +6 -0
  434. package/actual/type-error/constructor.js +6 -0
  435. package/actual/type-error/index.js +7 -0
  436. package/actual/type-error/is-error.js +6 -0
  437. package/actual/typed-array/constructors.js +18 -0
  438. package/actual/typed-array/from-base64.js +43 -1
  439. package/actual/typed-array/from-hex.js +43 -1
  440. package/actual/typed-array/from.js +42 -0
  441. package/actual/typed-array/index.js +9 -2
  442. package/actual/typed-array/methods.js +49 -0
  443. package/actual/typed-array/of.js +42 -0
  444. package/actual/typed-array/set-from-base64.js +2 -0
  445. package/actual/typed-array/set-from-hex.js +2 -0
  446. package/actual/typed-array/to-base64.js +1 -1
  447. package/actual/typed-array/to-hex.js +1 -1
  448. package/actual/uint16-array/at.js +2 -0
  449. package/actual/uint16-array/constructor.js +46 -0
  450. package/actual/uint16-array/copy-within.js +2 -0
  451. package/actual/uint16-array/entries.js +4 -0
  452. package/actual/uint16-array/every.js +2 -0
  453. package/actual/uint16-array/fill.js +2 -0
  454. package/actual/uint16-array/filter.js +2 -0
  455. package/actual/uint16-array/find-index.js +2 -0
  456. package/actual/uint16-array/find-last-index.js +2 -0
  457. package/actual/uint16-array/find-last.js +2 -0
  458. package/actual/uint16-array/find.js +2 -0
  459. package/actual/uint16-array/for-each.js +2 -0
  460. package/actual/uint16-array/from.js +42 -0
  461. package/actual/uint16-array/includes.js +2 -0
  462. package/actual/uint16-array/index-of.js +2 -0
  463. package/actual/uint16-array/index.js +48 -0
  464. package/actual/uint16-array/iterator.js +4 -0
  465. package/actual/uint16-array/join.js +2 -0
  466. package/actual/uint16-array/keys.js +4 -0
  467. package/actual/uint16-array/last-index-of.js +2 -0
  468. package/actual/uint16-array/map.js +2 -0
  469. package/actual/uint16-array/of.js +40 -0
  470. package/actual/uint16-array/reduce-right.js +2 -0
  471. package/actual/uint16-array/reduce.js +2 -0
  472. package/actual/uint16-array/reverse.js +2 -0
  473. package/actual/uint16-array/set.js +2 -0
  474. package/actual/uint16-array/slice.js +2 -0
  475. package/actual/uint16-array/some.js +2 -0
  476. package/actual/uint16-array/sort.js +2 -0
  477. package/actual/uint16-array/subarray.js +2 -0
  478. package/actual/uint16-array/to-locale-string.js +2 -0
  479. package/actual/uint16-array/to-reversed.js +2 -0
  480. package/actual/uint16-array/to-sorted.js +2 -0
  481. package/actual/uint16-array/to-string.js +2 -0
  482. package/actual/uint16-array/values.js +5 -0
  483. package/actual/uint16-array/with.js +2 -0
  484. package/actual/uint32-array/at.js +2 -0
  485. package/actual/uint32-array/constructor.js +46 -0
  486. package/actual/uint32-array/copy-within.js +2 -0
  487. package/actual/uint32-array/entries.js +4 -0
  488. package/actual/uint32-array/every.js +2 -0
  489. package/actual/uint32-array/fill.js +2 -0
  490. package/actual/uint32-array/filter.js +2 -0
  491. package/actual/uint32-array/find-index.js +2 -0
  492. package/actual/uint32-array/find-last-index.js +2 -0
  493. package/actual/uint32-array/find-last.js +2 -0
  494. package/actual/uint32-array/find.js +2 -0
  495. package/actual/uint32-array/for-each.js +2 -0
  496. package/actual/uint32-array/from.js +42 -0
  497. package/actual/uint32-array/includes.js +2 -0
  498. package/actual/uint32-array/index-of.js +2 -0
  499. package/actual/uint32-array/index.js +48 -0
  500. package/actual/uint32-array/iterator.js +4 -0
  501. package/actual/uint32-array/join.js +2 -0
  502. package/actual/uint32-array/keys.js +4 -0
  503. package/actual/uint32-array/last-index-of.js +2 -0
  504. package/actual/uint32-array/map.js +2 -0
  505. package/actual/uint32-array/of.js +40 -0
  506. package/actual/uint32-array/reduce-right.js +2 -0
  507. package/actual/uint32-array/reduce.js +2 -0
  508. package/actual/uint32-array/reverse.js +2 -0
  509. package/actual/uint32-array/set.js +2 -0
  510. package/actual/uint32-array/slice.js +2 -0
  511. package/actual/uint32-array/some.js +2 -0
  512. package/actual/uint32-array/sort.js +2 -0
  513. package/actual/uint32-array/subarray.js +2 -0
  514. package/actual/uint32-array/to-locale-string.js +2 -0
  515. package/actual/uint32-array/to-reversed.js +2 -0
  516. package/actual/uint32-array/to-sorted.js +2 -0
  517. package/actual/uint32-array/to-string.js +2 -0
  518. package/actual/uint32-array/values.js +5 -0
  519. package/actual/uint32-array/with.js +2 -0
  520. package/actual/uint8-array/at.js +2 -0
  521. package/actual/uint8-array/constructor.js +50 -0
  522. package/actual/uint8-array/copy-within.js +2 -0
  523. package/actual/uint8-array/entries.js +4 -0
  524. package/actual/uint8-array/every.js +2 -0
  525. package/actual/uint8-array/fill.js +2 -0
  526. package/actual/uint8-array/filter.js +2 -0
  527. package/actual/uint8-array/find-index.js +2 -0
  528. package/actual/uint8-array/find-last-index.js +2 -0
  529. package/actual/uint8-array/find-last.js +2 -0
  530. package/actual/uint8-array/find.js +2 -0
  531. package/actual/uint8-array/for-each.js +2 -0
  532. package/actual/uint8-array/from-base64.js +44 -0
  533. package/actual/uint8-array/from-hex.js +44 -0
  534. package/actual/uint8-array/from.js +46 -0
  535. package/actual/uint8-array/includes.js +2 -0
  536. package/actual/uint8-array/index-of.js +2 -0
  537. package/actual/uint8-array/index.js +54 -0
  538. package/actual/uint8-array/iterator.js +4 -0
  539. package/actual/uint8-array/join.js +2 -0
  540. package/actual/uint8-array/keys.js +4 -0
  541. package/actual/uint8-array/last-index-of.js +2 -0
  542. package/actual/uint8-array/map.js +2 -0
  543. package/actual/uint8-array/of.js +44 -0
  544. package/actual/uint8-array/reduce-right.js +2 -0
  545. package/actual/uint8-array/reduce.js +2 -0
  546. package/actual/uint8-array/reverse.js +2 -0
  547. package/actual/uint8-array/set-from-base64.js +2 -0
  548. package/actual/uint8-array/set-from-hex.js +2 -0
  549. package/actual/uint8-array/set.js +2 -0
  550. package/actual/uint8-array/slice.js +2 -0
  551. package/actual/uint8-array/some.js +2 -0
  552. package/actual/uint8-array/sort.js +2 -0
  553. package/actual/uint8-array/subarray.js +2 -0
  554. package/actual/uint8-array/to-base64.js +2 -0
  555. package/actual/uint8-array/to-hex.js +2 -0
  556. package/actual/uint8-array/to-locale-string.js +2 -0
  557. package/actual/uint8-array/to-reversed.js +2 -0
  558. package/actual/uint8-array/to-sorted.js +2 -0
  559. package/actual/uint8-array/to-string.js +2 -0
  560. package/actual/uint8-array/values.js +5 -0
  561. package/actual/uint8-array/with.js +2 -0
  562. package/actual/uint8-clamped-array/at.js +2 -0
  563. package/actual/uint8-clamped-array/constructor.js +46 -0
  564. package/actual/uint8-clamped-array/copy-within.js +2 -0
  565. package/actual/uint8-clamped-array/entries.js +4 -0
  566. package/actual/uint8-clamped-array/every.js +2 -0
  567. package/actual/uint8-clamped-array/fill.js +2 -0
  568. package/actual/uint8-clamped-array/filter.js +2 -0
  569. package/actual/uint8-clamped-array/find-index.js +2 -0
  570. package/actual/uint8-clamped-array/find-last-index.js +2 -0
  571. package/actual/uint8-clamped-array/find-last.js +2 -0
  572. package/actual/uint8-clamped-array/find.js +2 -0
  573. package/actual/uint8-clamped-array/for-each.js +2 -0
  574. package/actual/uint8-clamped-array/from.js +42 -0
  575. package/actual/uint8-clamped-array/includes.js +2 -0
  576. package/actual/uint8-clamped-array/index-of.js +2 -0
  577. package/actual/uint8-clamped-array/index.js +48 -0
  578. package/actual/uint8-clamped-array/iterator.js +4 -0
  579. package/actual/uint8-clamped-array/join.js +2 -0
  580. package/actual/uint8-clamped-array/keys.js +4 -0
  581. package/actual/uint8-clamped-array/last-index-of.js +2 -0
  582. package/actual/uint8-clamped-array/map.js +2 -0
  583. package/actual/uint8-clamped-array/of.js +40 -0
  584. package/actual/uint8-clamped-array/reduce-right.js +2 -0
  585. package/actual/uint8-clamped-array/reduce.js +2 -0
  586. package/actual/uint8-clamped-array/reverse.js +2 -0
  587. package/actual/uint8-clamped-array/set.js +2 -0
  588. package/actual/uint8-clamped-array/slice.js +2 -0
  589. package/actual/uint8-clamped-array/some.js +2 -0
  590. package/actual/uint8-clamped-array/sort.js +2 -0
  591. package/actual/uint8-clamped-array/subarray.js +2 -0
  592. package/actual/uint8-clamped-array/to-locale-string.js +2 -0
  593. package/actual/uint8-clamped-array/to-reversed.js +2 -0
  594. package/actual/uint8-clamped-array/to-sorted.js +2 -0
  595. package/actual/uint8-clamped-array/to-string.js +2 -0
  596. package/actual/uint8-clamped-array/values.js +5 -0
  597. package/actual/uint8-clamped-array/with.js +2 -0
  598. package/actual/uri-error/constructor.js +6 -0
  599. package/actual/uri-error/index.js +7 -0
  600. package/actual/uri-error/is-error.js +6 -0
  601. package/actual/url/can-parse.js +2 -0
  602. package/actual/url/constructor.js +18 -0
  603. package/actual/url/index.js +3 -0
  604. package/actual/url/parse.js +15 -0
  605. package/actual/url/to-json.js +2 -4
  606. package/actual/url-search-params/constructor.js +14 -0
  607. package/actual/url-search-params/index.js +3 -0
  608. package/actual/weak-map/constructor.js +3 -0
  609. package/actual/weak-map/get-or-insert-computed.js +11 -0
  610. package/actual/weak-map/get-or-insert.js +11 -0
  611. package/actual/weak-map/index.js +3 -0
  612. package/actual/weak-map/prototype/get-or-insert-computed.js +11 -0
  613. package/actual/weak-map/prototype/get-or-insert.js +11 -0
  614. package/actual/weak-set/constructor.js +1 -0
  615. package/actual/weak-set/index.js +1 -0
  616. package/configurator.js +1 -1
  617. package/es/aggregate-error/constructor.js +1 -0
  618. package/es/aggregate-error/index.js +2 -0
  619. package/es/aggregate-error/is-error.js +6 -0
  620. package/es/array/from-async.js +13 -0
  621. package/es/array/from.js +1 -0
  622. package/es/array/index.js +5 -0
  623. package/es/array/instance/at.js +11 -0
  624. package/es/array/instance/concat.js +11 -0
  625. package/es/array/instance/copy-within.js +11 -0
  626. package/es/array/instance/entries.js +11 -0
  627. package/es/array/instance/fill.js +11 -0
  628. package/es/array/instance/filter.js +11 -0
  629. package/es/array/instance/find-index.js +11 -0
  630. package/es/array/instance/find-last-index.js +11 -0
  631. package/es/array/instance/find-last.js +11 -0
  632. package/es/array/instance/find.js +11 -0
  633. package/es/array/instance/flat-map.js +11 -0
  634. package/es/array/instance/flat.js +11 -0
  635. package/es/array/instance/includes.js +11 -0
  636. package/es/array/instance/index-of.js +11 -0
  637. package/es/array/instance/join.js +11 -0
  638. package/es/array/instance/keys.js +11 -0
  639. package/es/array/instance/last-index-of.js +11 -0
  640. package/es/array/instance/map.js +11 -0
  641. package/es/array/instance/push.js +11 -0
  642. package/es/array/instance/reduce-right.js +11 -0
  643. package/es/array/instance/reduce.js +11 -0
  644. package/es/array/instance/reverse.js +11 -0
  645. package/es/array/instance/slice.js +11 -0
  646. package/es/array/instance/sort.js +11 -0
  647. package/es/array/instance/splice.js +11 -0
  648. package/es/array/instance/to-reversed.js +11 -0
  649. package/es/array/instance/to-sorted.js +11 -0
  650. package/es/array/instance/to-spliced.js +11 -0
  651. package/es/array/instance/unshift.js +11 -0
  652. package/es/array/instance/values.js +11 -0
  653. package/es/array/instance/with.js +11 -0
  654. package/es/array/iterator.js +1 -1
  655. package/es/array/prototype/iterator.js +7 -0
  656. package/es/array/prototype/values.js +9 -0
  657. package/es/array/values.js +1 -0
  658. package/es/array-buffer/detached.js +0 -1
  659. package/es/async-disposable-stack/constructor.js +14 -0
  660. package/es/async-disposable-stack/index.js +14 -0
  661. package/es/async-iterator/index.js +11 -0
  662. package/es/data-view/constructor.js +3 -0
  663. package/es/data-view/get-float16.js +2 -0
  664. package/es/data-view/index.js +3 -0
  665. package/es/data-view/set-float16.js +3 -0
  666. package/es/disposable-stack/constructor.js +9 -0
  667. package/es/disposable-stack/index.js +9 -0
  668. package/es/error/constructor.js +2 -2
  669. package/es/error/index.js +3 -2
  670. package/es/error/is-error.js +6 -0
  671. package/es/eval-error/constructor.js +6 -0
  672. package/es/eval-error/index.js +7 -0
  673. package/es/eval-error/is-error.js +6 -0
  674. package/es/float32-array/at.js +2 -0
  675. package/es/float32-array/constructor.js +45 -0
  676. package/es/float32-array/copy-within.js +2 -0
  677. package/es/float32-array/entries.js +4 -0
  678. package/es/float32-array/every.js +2 -0
  679. package/es/float32-array/fill.js +2 -0
  680. package/es/float32-array/filter.js +2 -0
  681. package/es/float32-array/find-index.js +2 -0
  682. package/es/float32-array/find-last-index.js +2 -0
  683. package/es/float32-array/find-last.js +2 -0
  684. package/es/float32-array/find.js +2 -0
  685. package/es/float32-array/for-each.js +2 -0
  686. package/es/float32-array/from.js +41 -0
  687. package/es/float32-array/includes.js +2 -0
  688. package/es/float32-array/index-of.js +2 -0
  689. package/es/float32-array/index.js +47 -0
  690. package/es/float32-array/iterator.js +4 -0
  691. package/es/float32-array/join.js +2 -0
  692. package/es/float32-array/keys.js +4 -0
  693. package/es/float32-array/last-index-of.js +2 -0
  694. package/es/float32-array/map.js +2 -0
  695. package/es/float32-array/of.js +40 -0
  696. package/es/float32-array/reduce-right.js +2 -0
  697. package/es/float32-array/reduce.js +2 -0
  698. package/es/float32-array/reverse.js +2 -0
  699. package/es/float32-array/set.js +2 -0
  700. package/es/float32-array/slice.js +2 -0
  701. package/es/float32-array/some.js +2 -0
  702. package/es/float32-array/sort.js +2 -0
  703. package/es/float32-array/subarray.js +2 -0
  704. package/es/float32-array/to-locale-string.js +2 -0
  705. package/es/float32-array/to-reversed.js +2 -0
  706. package/es/float32-array/to-sorted.js +2 -0
  707. package/es/float32-array/to-string.js +2 -0
  708. package/es/float32-array/values.js +5 -0
  709. package/es/float32-array/with.js +2 -0
  710. package/es/float64-array/at.js +2 -0
  711. package/es/float64-array/constructor.js +45 -0
  712. package/es/float64-array/copy-within.js +2 -0
  713. package/es/float64-array/entries.js +4 -0
  714. package/es/float64-array/every.js +2 -0
  715. package/es/float64-array/fill.js +2 -0
  716. package/es/float64-array/filter.js +2 -0
  717. package/es/float64-array/find-index.js +2 -0
  718. package/es/float64-array/find-last-index.js +2 -0
  719. package/es/float64-array/find-last.js +2 -0
  720. package/es/float64-array/find.js +2 -0
  721. package/es/float64-array/for-each.js +2 -0
  722. package/es/float64-array/from.js +41 -0
  723. package/es/float64-array/includes.js +2 -0
  724. package/es/float64-array/index-of.js +2 -0
  725. package/es/float64-array/index.js +47 -0
  726. package/es/float64-array/iterator.js +4 -0
  727. package/es/float64-array/join.js +2 -0
  728. package/es/float64-array/keys.js +4 -0
  729. package/es/float64-array/last-index-of.js +2 -0
  730. package/es/float64-array/map.js +2 -0
  731. package/es/float64-array/of.js +40 -0
  732. package/es/float64-array/reduce-right.js +2 -0
  733. package/es/float64-array/reduce.js +2 -0
  734. package/es/float64-array/reverse.js +2 -0
  735. package/es/float64-array/set.js +2 -0
  736. package/es/float64-array/slice.js +2 -0
  737. package/es/float64-array/some.js +2 -0
  738. package/es/float64-array/sort.js +2 -0
  739. package/es/float64-array/subarray.js +2 -0
  740. package/es/float64-array/to-locale-string.js +2 -0
  741. package/es/float64-array/to-reversed.js +2 -0
  742. package/es/float64-array/to-sorted.js +2 -0
  743. package/es/float64-array/to-string.js +2 -0
  744. package/es/float64-array/values.js +5 -0
  745. package/es/float64-array/with.js +2 -0
  746. package/es/function/instance/name.js +9 -0
  747. package/es/function/name.js +4 -0
  748. package/es/index.js +55 -6
  749. package/es/instance/at.js +2 -2
  750. package/es/instance/code-point-at.js +1 -1
  751. package/es/instance/concat.js +1 -1
  752. package/es/instance/copy-within.js +1 -1
  753. package/es/instance/ends-with.js +1 -1
  754. package/es/instance/entries.js +1 -1
  755. package/es/instance/fill.js +1 -1
  756. package/es/instance/filter.js +1 -1
  757. package/es/instance/find-index.js +1 -1
  758. package/es/instance/find-last-index.js +1 -1
  759. package/es/instance/find-last.js +1 -1
  760. package/es/instance/find.js +1 -1
  761. package/es/instance/flat-map.js +1 -1
  762. package/es/instance/flat.js +1 -1
  763. package/es/instance/includes.js +2 -2
  764. package/es/instance/index-of.js +1 -1
  765. package/es/instance/is-well-formed.js +1 -1
  766. package/es/instance/join.js +11 -0
  767. package/es/instance/keys.js +1 -1
  768. package/es/instance/last-index-of.js +1 -1
  769. package/es/instance/map.js +1 -1
  770. package/es/instance/match-all.js +1 -1
  771. package/es/instance/name.js +9 -0
  772. package/es/instance/pad-end.js +1 -1
  773. package/es/instance/pad-start.js +1 -1
  774. package/es/instance/push.js +1 -1
  775. package/es/instance/reduce-right.js +1 -1
  776. package/es/instance/reduce.js +1 -1
  777. package/es/instance/repeat.js +1 -1
  778. package/es/instance/replace-all.js +1 -1
  779. package/es/instance/reverse.js +1 -1
  780. package/es/instance/slice.js +1 -1
  781. package/es/instance/sort.js +1 -1
  782. package/es/instance/splice.js +1 -1
  783. package/es/instance/starts-with.js +1 -1
  784. package/es/instance/to-exponential.js +12 -0
  785. package/es/instance/to-fixed.js +12 -0
  786. package/es/instance/to-reversed.js +1 -1
  787. package/es/instance/to-sorted.js +1 -1
  788. package/es/instance/to-spliced.js +1 -1
  789. package/es/instance/to-well-formed.js +1 -1
  790. package/es/instance/trim-end.js +1 -1
  791. package/es/instance/trim-left.js +1 -1
  792. package/es/instance/trim-right.js +1 -1
  793. package/es/instance/trim-start.js +1 -1
  794. package/es/instance/trim.js +1 -1
  795. package/es/instance/unshift.js +1 -1
  796. package/es/instance/values.js +1 -1
  797. package/es/instance/with.js +1 -1
  798. package/es/int16-array/at.js +2 -0
  799. package/es/int16-array/constructor.js +45 -0
  800. package/es/int16-array/copy-within.js +2 -0
  801. package/es/int16-array/entries.js +4 -0
  802. package/es/int16-array/every.js +2 -0
  803. package/es/int16-array/fill.js +2 -0
  804. package/es/int16-array/filter.js +2 -0
  805. package/es/int16-array/find-index.js +2 -0
  806. package/es/int16-array/find-last-index.js +2 -0
  807. package/es/int16-array/find-last.js +2 -0
  808. package/es/int16-array/find.js +2 -0
  809. package/es/int16-array/for-each.js +2 -0
  810. package/es/int16-array/from.js +41 -0
  811. package/es/int16-array/includes.js +2 -0
  812. package/es/int16-array/index-of.js +2 -0
  813. package/es/int16-array/index.js +47 -0
  814. package/es/int16-array/iterator.js +4 -0
  815. package/es/int16-array/join.js +2 -0
  816. package/es/int16-array/keys.js +4 -0
  817. package/es/int16-array/last-index-of.js +2 -0
  818. package/es/int16-array/map.js +2 -0
  819. package/es/int16-array/of.js +40 -0
  820. package/es/int16-array/reduce-right.js +2 -0
  821. package/es/int16-array/reduce.js +2 -0
  822. package/es/int16-array/reverse.js +2 -0
  823. package/es/int16-array/set.js +2 -0
  824. package/es/int16-array/slice.js +2 -0
  825. package/es/int16-array/some.js +2 -0
  826. package/es/int16-array/sort.js +2 -0
  827. package/es/int16-array/subarray.js +2 -0
  828. package/es/int16-array/to-locale-string.js +2 -0
  829. package/es/int16-array/to-reversed.js +2 -0
  830. package/es/int16-array/to-sorted.js +2 -0
  831. package/es/int16-array/to-string.js +2 -0
  832. package/es/int16-array/values.js +5 -0
  833. package/es/int16-array/with.js +2 -0
  834. package/es/int32-array/at.js +2 -0
  835. package/es/int32-array/constructor.js +45 -0
  836. package/es/int32-array/copy-within.js +2 -0
  837. package/es/int32-array/entries.js +4 -0
  838. package/es/int32-array/every.js +2 -0
  839. package/es/int32-array/fill.js +2 -0
  840. package/es/int32-array/filter.js +2 -0
  841. package/es/int32-array/find-index.js +2 -0
  842. package/es/int32-array/find-last-index.js +2 -0
  843. package/es/int32-array/find-last.js +2 -0
  844. package/es/int32-array/find.js +2 -0
  845. package/es/int32-array/for-each.js +2 -0
  846. package/es/int32-array/from.js +41 -0
  847. package/es/int32-array/includes.js +2 -0
  848. package/es/int32-array/index-of.js +2 -0
  849. package/es/int32-array/index.js +47 -0
  850. package/es/int32-array/iterator.js +4 -0
  851. package/es/int32-array/join.js +2 -0
  852. package/es/int32-array/keys.js +4 -0
  853. package/es/int32-array/last-index-of.js +2 -0
  854. package/es/int32-array/map.js +2 -0
  855. package/es/int32-array/of.js +40 -0
  856. package/es/int32-array/reduce-right.js +2 -0
  857. package/es/int32-array/reduce.js +2 -0
  858. package/es/int32-array/reverse.js +2 -0
  859. package/es/int32-array/set.js +2 -0
  860. package/es/int32-array/slice.js +2 -0
  861. package/es/int32-array/some.js +2 -0
  862. package/es/int32-array/sort.js +2 -0
  863. package/es/int32-array/subarray.js +2 -0
  864. package/es/int32-array/to-locale-string.js +2 -0
  865. package/es/int32-array/to-reversed.js +2 -0
  866. package/es/int32-array/to-sorted.js +2 -0
  867. package/es/int32-array/to-string.js +2 -0
  868. package/es/int32-array/values.js +5 -0
  869. package/es/int32-array/with.js +2 -0
  870. package/es/int8-array/at.js +2 -0
  871. package/es/int8-array/constructor.js +45 -0
  872. package/es/int8-array/copy-within.js +2 -0
  873. package/es/int8-array/entries.js +4 -0
  874. package/es/int8-array/every.js +2 -0
  875. package/es/int8-array/fill.js +2 -0
  876. package/es/int8-array/filter.js +2 -0
  877. package/es/int8-array/find-index.js +2 -0
  878. package/es/int8-array/find-last-index.js +2 -0
  879. package/es/int8-array/find-last.js +2 -0
  880. package/es/int8-array/find.js +2 -0
  881. package/es/int8-array/for-each.js +2 -0
  882. package/es/int8-array/from.js +41 -0
  883. package/es/int8-array/includes.js +2 -0
  884. package/es/int8-array/index-of.js +2 -0
  885. package/es/int8-array/index.js +47 -0
  886. package/es/int8-array/iterator.js +4 -0
  887. package/es/int8-array/join.js +2 -0
  888. package/es/int8-array/keys.js +4 -0
  889. package/es/int8-array/last-index-of.js +2 -0
  890. package/es/int8-array/map.js +2 -0
  891. package/es/int8-array/of.js +40 -0
  892. package/es/int8-array/reduce-right.js +2 -0
  893. package/es/int8-array/reduce.js +2 -0
  894. package/es/int8-array/reverse.js +2 -0
  895. package/es/int8-array/set.js +2 -0
  896. package/es/int8-array/slice.js +2 -0
  897. package/es/int8-array/some.js +2 -0
  898. package/es/int8-array/sort.js +2 -0
  899. package/es/int8-array/subarray.js +2 -0
  900. package/es/int8-array/to-locale-string.js +2 -0
  901. package/es/int8-array/to-reversed.js +2 -0
  902. package/es/int8-array/to-sorted.js +2 -0
  903. package/es/int8-array/to-string.js +2 -0
  904. package/es/int8-array/values.js +5 -0
  905. package/es/int8-array/with.js +2 -0
  906. package/es/iterator/concat.js +22 -0
  907. package/es/iterator/constructor.js +21 -0
  908. package/es/iterator/drop.js +8 -0
  909. package/es/iterator/every.js +10 -0
  910. package/es/iterator/filter.js +8 -0
  911. package/es/iterator/find.js +10 -0
  912. package/es/iterator/flat-map.js +10 -0
  913. package/es/iterator/for-each.js +10 -0
  914. package/es/iterator/from.js +22 -0
  915. package/es/iterator/index.js +23 -0
  916. package/es/iterator/map.js +8 -0
  917. package/es/iterator/prototype/drop.js +8 -0
  918. package/es/iterator/prototype/every.js +10 -0
  919. package/es/iterator/prototype/filter.js +8 -0
  920. package/es/iterator/prototype/find.js +10 -0
  921. package/es/iterator/prototype/flat-map.js +10 -0
  922. package/es/iterator/prototype/for-each.js +10 -0
  923. package/es/iterator/prototype/map.js +8 -0
  924. package/es/iterator/prototype/reduce.js +10 -0
  925. package/es/iterator/prototype/some.js +10 -0
  926. package/es/iterator/prototype/take.js +8 -0
  927. package/es/iterator/prototype/to-array.js +10 -0
  928. package/es/iterator/reduce.js +10 -0
  929. package/es/iterator/some.js +10 -0
  930. package/es/iterator/take.js +8 -0
  931. package/es/iterator/to-array.js +10 -0
  932. package/es/json/index.js +3 -0
  933. package/es/json/is-raw-json.js +6 -0
  934. package/es/json/parse.js +6 -0
  935. package/es/json/raw-json.js +6 -0
  936. package/es/json/stringify.js +1 -4
  937. package/es/map/constructor.js +2 -0
  938. package/es/map/get-or-insert-computed.js +10 -0
  939. package/es/map/get-or-insert.js +10 -0
  940. package/es/map/group-by.js +2 -0
  941. package/es/map/index.js +2 -0
  942. package/es/map/prototype/get-or-insert-computed.js +10 -0
  943. package/es/map/prototype/get-or-insert.js +10 -0
  944. package/es/math/f16round.js +6 -0
  945. package/es/math/index.js +5 -1
  946. package/es/math/sum-precise.js +9 -0
  947. package/es/number/instance/to-exponential.js +12 -0
  948. package/es/number/instance/to-fixed.js +12 -0
  949. package/es/object/create.js +3 -3
  950. package/es/object/define-properties.js +3 -3
  951. package/es/object/define-property.js +3 -3
  952. package/es/object/from-entries.js +1 -0
  953. package/es/object/get-own-property-descriptor.js +3 -3
  954. package/es/object/get-own-property-names.js +3 -3
  955. package/es/promise/all-settled.js +3 -3
  956. package/es/promise/all.js +3 -3
  957. package/es/promise/any.js +3 -3
  958. package/es/promise/index.js +1 -0
  959. package/es/promise/race.js +3 -3
  960. package/es/promise/reject.js +3 -3
  961. package/es/promise/resolve.js +3 -3
  962. package/es/promise/try.js +17 -0
  963. package/es/promise/with-resolvers.js +2 -2
  964. package/es/range-error/constructor.js +6 -0
  965. package/es/range-error/index.js +7 -0
  966. package/es/range-error/is-error.js +6 -0
  967. package/es/reference-error/constructor.js +6 -0
  968. package/es/reference-error/index.js +7 -0
  969. package/es/reference-error/is-error.js +6 -0
  970. package/es/regexp/escape.js +8 -0
  971. package/es/regexp/exec.js +2 -0
  972. package/es/regexp/index.js +3 -0
  973. package/es/regexp/instance/flags.js +11 -0
  974. package/es/regexp/test.js +1 -0
  975. package/es/set/constructor.js +7 -0
  976. package/es/set/difference.js +10 -0
  977. package/es/set/index.js +7 -0
  978. package/es/set/intersection.js +10 -0
  979. package/es/set/is-disjoint-from.js +10 -0
  980. package/es/set/is-subset-of.js +10 -0
  981. package/es/set/is-superset-of.js +10 -0
  982. package/es/set/prototype/difference.js +10 -0
  983. package/es/set/prototype/intersection.js +10 -0
  984. package/es/set/prototype/is-disjoint-from.js +10 -0
  985. package/es/set/prototype/is-subset-of.js +10 -0
  986. package/es/set/prototype/is-superset-of.js +10 -0
  987. package/es/set/prototype/symmetric-difference.js +10 -0
  988. package/es/set/prototype/union.js +10 -0
  989. package/es/set/symmetric-difference.js +10 -0
  990. package/es/set/union.js +10 -0
  991. package/es/string/index.js +2 -2
  992. package/es/string/instance/anchor.js +12 -0
  993. package/es/string/instance/at.js +12 -0
  994. package/es/string/instance/big.js +12 -0
  995. package/es/string/instance/blink.js +12 -0
  996. package/es/string/instance/bold.js +12 -0
  997. package/es/string/instance/code-point-at.js +12 -0
  998. package/es/string/instance/ends-with.js +12 -0
  999. package/es/string/instance/fixed.js +12 -0
  1000. package/es/string/instance/fontcolor.js +12 -0
  1001. package/es/string/instance/fontsize.js +12 -0
  1002. package/es/string/instance/includes.js +12 -0
  1003. package/es/string/instance/is-well-formed.js +12 -0
  1004. package/es/string/instance/italics.js +12 -0
  1005. package/es/string/instance/link.js +12 -0
  1006. package/es/string/instance/match-all.js +12 -0
  1007. package/es/string/instance/pad-end.js +12 -0
  1008. package/es/string/instance/pad-start.js +12 -0
  1009. package/es/string/instance/repeat.js +12 -0
  1010. package/es/string/instance/replace-all.js +12 -0
  1011. package/es/string/instance/small.js +12 -0
  1012. package/es/string/instance/starts-with.js +12 -0
  1013. package/es/string/instance/strike.js +12 -0
  1014. package/es/string/instance/sub.js +12 -0
  1015. package/es/string/instance/sup.js +12 -0
  1016. package/es/string/instance/to-well-formed.js +12 -0
  1017. package/es/string/instance/trim-end.js +12 -0
  1018. package/es/string/instance/trim-left.js +12 -0
  1019. package/es/string/instance/trim-right.js +12 -0
  1020. package/es/string/instance/trim-start.js +12 -0
  1021. package/es/string/instance/trim.js +12 -0
  1022. package/es/string/iterator.js +1 -1
  1023. package/es/string/match.js +0 -4
  1024. package/es/string/prototype/iterator.js +7 -0
  1025. package/es/string/replace.js +0 -4
  1026. package/es/string/search.js +0 -4
  1027. package/es/string/split.js +0 -4
  1028. package/es/suppressed-error/constructor.js +6 -0
  1029. package/es/suppressed-error/index.js +7 -0
  1030. package/es/suppressed-error/is-error.js +6 -0
  1031. package/es/symbol/async-dispose.js +12 -0
  1032. package/es/symbol/dispose.js +7 -0
  1033. package/es/symbol/index.js +2 -0
  1034. package/es/syntax-error/constructor.js +6 -0
  1035. package/es/syntax-error/index.js +7 -0
  1036. package/es/syntax-error/is-error.js +6 -0
  1037. package/es/type-error/constructor.js +6 -0
  1038. package/es/type-error/index.js +7 -0
  1039. package/es/type-error/is-error.js +6 -0
  1040. package/es/typed-array/constructors.js +17 -0
  1041. package/es/typed-array/from-base64.js +44 -0
  1042. package/es/typed-array/from-hex.js +44 -0
  1043. package/es/typed-array/from.js +41 -0
  1044. package/es/typed-array/index.js +8 -2
  1045. package/es/typed-array/methods.js +48 -0
  1046. package/es/typed-array/of.js +42 -0
  1047. package/es/typed-array/set-from-base64.js +2 -0
  1048. package/es/typed-array/set-from-hex.js +2 -0
  1049. package/es/typed-array/to-base64.js +2 -0
  1050. package/es/typed-array/to-hex.js +2 -0
  1051. package/es/uint16-array/at.js +2 -0
  1052. package/es/uint16-array/constructor.js +45 -0
  1053. package/es/uint16-array/copy-within.js +2 -0
  1054. package/es/uint16-array/entries.js +4 -0
  1055. package/es/uint16-array/every.js +2 -0
  1056. package/es/uint16-array/fill.js +2 -0
  1057. package/es/uint16-array/filter.js +2 -0
  1058. package/es/uint16-array/find-index.js +2 -0
  1059. package/es/uint16-array/find-last-index.js +2 -0
  1060. package/es/uint16-array/find-last.js +2 -0
  1061. package/es/uint16-array/find.js +2 -0
  1062. package/es/uint16-array/for-each.js +2 -0
  1063. package/es/uint16-array/from.js +41 -0
  1064. package/es/uint16-array/includes.js +2 -0
  1065. package/es/uint16-array/index-of.js +2 -0
  1066. package/es/uint16-array/index.js +47 -0
  1067. package/es/uint16-array/iterator.js +4 -0
  1068. package/es/uint16-array/join.js +2 -0
  1069. package/es/uint16-array/keys.js +4 -0
  1070. package/es/uint16-array/last-index-of.js +2 -0
  1071. package/es/uint16-array/map.js +2 -0
  1072. package/es/uint16-array/of.js +40 -0
  1073. package/es/uint16-array/reduce-right.js +2 -0
  1074. package/es/uint16-array/reduce.js +2 -0
  1075. package/es/uint16-array/reverse.js +2 -0
  1076. package/es/uint16-array/set.js +2 -0
  1077. package/es/uint16-array/slice.js +2 -0
  1078. package/es/uint16-array/some.js +2 -0
  1079. package/es/uint16-array/sort.js +2 -0
  1080. package/es/uint16-array/subarray.js +2 -0
  1081. package/es/uint16-array/to-locale-string.js +2 -0
  1082. package/es/uint16-array/to-reversed.js +2 -0
  1083. package/es/uint16-array/to-sorted.js +2 -0
  1084. package/es/uint16-array/to-string.js +2 -0
  1085. package/es/uint16-array/values.js +5 -0
  1086. package/es/uint16-array/with.js +2 -0
  1087. package/es/uint32-array/at.js +2 -0
  1088. package/es/uint32-array/constructor.js +45 -0
  1089. package/es/uint32-array/copy-within.js +2 -0
  1090. package/es/uint32-array/entries.js +4 -0
  1091. package/es/uint32-array/every.js +2 -0
  1092. package/es/uint32-array/fill.js +2 -0
  1093. package/es/uint32-array/filter.js +2 -0
  1094. package/es/uint32-array/find-index.js +2 -0
  1095. package/es/uint32-array/find-last-index.js +2 -0
  1096. package/es/uint32-array/find-last.js +2 -0
  1097. package/es/uint32-array/find.js +2 -0
  1098. package/es/uint32-array/for-each.js +2 -0
  1099. package/es/uint32-array/from.js +41 -0
  1100. package/es/uint32-array/includes.js +2 -0
  1101. package/es/uint32-array/index-of.js +2 -0
  1102. package/es/uint32-array/index.js +47 -0
  1103. package/es/uint32-array/iterator.js +4 -0
  1104. package/es/uint32-array/join.js +2 -0
  1105. package/es/uint32-array/keys.js +4 -0
  1106. package/es/uint32-array/last-index-of.js +2 -0
  1107. package/es/uint32-array/map.js +2 -0
  1108. package/es/uint32-array/of.js +40 -0
  1109. package/es/uint32-array/reduce-right.js +2 -0
  1110. package/es/uint32-array/reduce.js +2 -0
  1111. package/es/uint32-array/reverse.js +2 -0
  1112. package/es/uint32-array/set.js +2 -0
  1113. package/es/uint32-array/slice.js +2 -0
  1114. package/es/uint32-array/some.js +2 -0
  1115. package/es/uint32-array/sort.js +2 -0
  1116. package/es/uint32-array/subarray.js +2 -0
  1117. package/es/uint32-array/to-locale-string.js +2 -0
  1118. package/es/uint32-array/to-reversed.js +2 -0
  1119. package/es/uint32-array/to-sorted.js +2 -0
  1120. package/es/uint32-array/to-string.js +2 -0
  1121. package/es/uint32-array/values.js +5 -0
  1122. package/es/uint32-array/with.js +2 -0
  1123. package/es/uint8-array/at.js +2 -0
  1124. package/es/uint8-array/constructor.js +49 -0
  1125. package/es/uint8-array/copy-within.js +2 -0
  1126. package/es/uint8-array/entries.js +4 -0
  1127. package/es/uint8-array/every.js +2 -0
  1128. package/es/uint8-array/fill.js +2 -0
  1129. package/es/uint8-array/filter.js +2 -0
  1130. package/es/uint8-array/find-index.js +2 -0
  1131. package/es/uint8-array/find-last-index.js +2 -0
  1132. package/es/uint8-array/find-last.js +2 -0
  1133. package/es/uint8-array/find.js +2 -0
  1134. package/es/uint8-array/for-each.js +2 -0
  1135. package/es/uint8-array/from-base64.js +44 -0
  1136. package/es/uint8-array/from-hex.js +44 -0
  1137. package/es/uint8-array/from.js +45 -0
  1138. package/es/uint8-array/includes.js +2 -0
  1139. package/es/uint8-array/index-of.js +2 -0
  1140. package/es/uint8-array/index.js +53 -0
  1141. package/es/uint8-array/iterator.js +4 -0
  1142. package/es/uint8-array/join.js +2 -0
  1143. package/es/uint8-array/keys.js +4 -0
  1144. package/es/uint8-array/last-index-of.js +2 -0
  1145. package/es/uint8-array/map.js +2 -0
  1146. package/es/uint8-array/of.js +44 -0
  1147. package/es/uint8-array/reduce-right.js +2 -0
  1148. package/es/uint8-array/reduce.js +2 -0
  1149. package/es/uint8-array/reverse.js +2 -0
  1150. package/es/uint8-array/set-from-base64.js +2 -0
  1151. package/es/uint8-array/set-from-hex.js +2 -0
  1152. package/es/uint8-array/set.js +2 -0
  1153. package/es/uint8-array/slice.js +2 -0
  1154. package/es/uint8-array/some.js +2 -0
  1155. package/es/uint8-array/sort.js +2 -0
  1156. package/es/uint8-array/subarray.js +2 -0
  1157. package/es/uint8-array/to-base64.js +2 -0
  1158. package/es/uint8-array/to-hex.js +2 -0
  1159. package/es/uint8-array/to-locale-string.js +2 -0
  1160. package/es/uint8-array/to-reversed.js +2 -0
  1161. package/es/uint8-array/to-sorted.js +2 -0
  1162. package/es/uint8-array/to-string.js +2 -0
  1163. package/es/uint8-array/values.js +5 -0
  1164. package/es/uint8-array/with.js +2 -0
  1165. package/es/uint8-clamped-array/at.js +2 -0
  1166. package/es/uint8-clamped-array/constructor.js +45 -0
  1167. package/es/uint8-clamped-array/copy-within.js +2 -0
  1168. package/es/uint8-clamped-array/entries.js +4 -0
  1169. package/es/uint8-clamped-array/every.js +2 -0
  1170. package/es/uint8-clamped-array/fill.js +2 -0
  1171. package/es/uint8-clamped-array/filter.js +2 -0
  1172. package/es/uint8-clamped-array/find-index.js +2 -0
  1173. package/es/uint8-clamped-array/find-last-index.js +2 -0
  1174. package/es/uint8-clamped-array/find-last.js +2 -0
  1175. package/es/uint8-clamped-array/find.js +2 -0
  1176. package/es/uint8-clamped-array/for-each.js +2 -0
  1177. package/es/uint8-clamped-array/from.js +41 -0
  1178. package/es/uint8-clamped-array/includes.js +2 -0
  1179. package/es/uint8-clamped-array/index-of.js +2 -0
  1180. package/es/uint8-clamped-array/index.js +47 -0
  1181. package/es/uint8-clamped-array/iterator.js +4 -0
  1182. package/es/uint8-clamped-array/join.js +2 -0
  1183. package/es/uint8-clamped-array/keys.js +4 -0
  1184. package/es/uint8-clamped-array/last-index-of.js +2 -0
  1185. package/es/uint8-clamped-array/map.js +2 -0
  1186. package/es/uint8-clamped-array/of.js +40 -0
  1187. package/es/uint8-clamped-array/reduce-right.js +2 -0
  1188. package/es/uint8-clamped-array/reduce.js +2 -0
  1189. package/es/uint8-clamped-array/reverse.js +2 -0
  1190. package/es/uint8-clamped-array/set.js +2 -0
  1191. package/es/uint8-clamped-array/slice.js +2 -0
  1192. package/es/uint8-clamped-array/some.js +2 -0
  1193. package/es/uint8-clamped-array/sort.js +2 -0
  1194. package/es/uint8-clamped-array/subarray.js +2 -0
  1195. package/es/uint8-clamped-array/to-locale-string.js +2 -0
  1196. package/es/uint8-clamped-array/to-reversed.js +2 -0
  1197. package/es/uint8-clamped-array/to-sorted.js +2 -0
  1198. package/es/uint8-clamped-array/to-string.js +2 -0
  1199. package/es/uint8-clamped-array/values.js +5 -0
  1200. package/es/uint8-clamped-array/with.js +2 -0
  1201. package/es/uri-error/constructor.js +6 -0
  1202. package/es/uri-error/index.js +7 -0
  1203. package/es/uri-error/is-error.js +6 -0
  1204. package/es/weak-map/constructor.js +3 -0
  1205. package/es/weak-map/get-or-insert-computed.js +10 -0
  1206. package/es/weak-map/get-or-insert.js +10 -0
  1207. package/es/weak-map/index.js +3 -0
  1208. package/es/weak-map/prototype/get-or-insert-computed.js +10 -0
  1209. package/es/weak-map/prototype/get-or-insert.js +10 -0
  1210. package/es/weak-set/constructor.js +1 -0
  1211. package/es/weak-set/index.js +1 -0
  1212. package/full/aggregate-error/constructor.js +2 -0
  1213. package/full/aggregate-error/index.js +3 -0
  1214. package/full/aggregate-error/is-error.js +6 -0
  1215. package/full/array/from-async.js +2 -1
  1216. package/full/array/from.js +2 -0
  1217. package/full/array/index.js +1 -1
  1218. package/full/array/instance/at.js +11 -0
  1219. package/full/array/instance/concat.js +11 -0
  1220. package/full/array/instance/copy-within.js +11 -0
  1221. package/full/array/instance/entries.js +11 -0
  1222. package/full/array/instance/fill.js +11 -0
  1223. package/full/array/instance/filter-reject.js +11 -0
  1224. package/full/array/instance/filter.js +11 -0
  1225. package/full/array/instance/find-index.js +11 -0
  1226. package/full/array/instance/find-last-index.js +11 -0
  1227. package/full/array/instance/find-last.js +11 -0
  1228. package/full/array/instance/find.js +11 -0
  1229. package/full/array/instance/flat-map.js +11 -0
  1230. package/full/array/instance/flat.js +11 -0
  1231. package/full/array/instance/includes.js +11 -0
  1232. package/full/array/instance/index-of.js +11 -0
  1233. package/full/array/instance/join.js +11 -0
  1234. package/full/array/instance/keys.js +11 -0
  1235. package/full/array/instance/last-index-of.js +11 -0
  1236. package/full/array/instance/map.js +11 -0
  1237. package/full/array/instance/push.js +11 -0
  1238. package/full/array/instance/reduce-right.js +11 -0
  1239. package/full/array/instance/reduce.js +11 -0
  1240. package/full/array/instance/reverse.js +11 -0
  1241. package/full/array/instance/slice.js +11 -0
  1242. package/full/array/instance/sort.js +11 -0
  1243. package/full/array/instance/splice.js +11 -0
  1244. package/full/array/instance/to-reversed.js +11 -0
  1245. package/full/array/instance/to-sorted.js +11 -0
  1246. package/full/array/instance/to-spliced.js +11 -0
  1247. package/full/array/instance/unique-by.js +11 -0
  1248. package/full/array/instance/unshift.js +11 -0
  1249. package/full/array/instance/values.js +11 -0
  1250. package/full/array/instance/with.js +11 -0
  1251. package/full/array/iterator.js +1 -1
  1252. package/full/array/prototype/iterator.js +7 -0
  1253. package/full/array/prototype/values.js +10 -0
  1254. package/full/array/values.js +2 -0
  1255. package/full/array-buffer/detached.js +0 -1
  1256. package/full/async-disposable-stack/constructor.js +4 -4
  1257. package/full/async-disposable-stack/index.js +4 -4
  1258. package/full/async-iterator/constructor.js +1 -1
  1259. package/full/async-iterator/from.js +1 -1
  1260. package/full/async-iterator/index.js +1 -1
  1261. package/full/data-view/constructor.js +3 -2
  1262. package/full/data-view/get-float16.js +1 -1
  1263. package/full/data-view/index.js +3 -2
  1264. package/full/data-view/set-float16.js +2 -1
  1265. package/full/disposable-stack/constructor.js +3 -3
  1266. package/full/disposable-stack/index.js +3 -3
  1267. package/full/dom-collections/instance/entries.js +21 -0
  1268. package/full/dom-collections/instance/for-each.js +19 -0
  1269. package/full/dom-collections/instance/keys.js +21 -0
  1270. package/full/dom-collections/instance/values.js +21 -0
  1271. package/full/dom-collections/prototype/entries.js +8 -0
  1272. package/full/dom-collections/prototype/for-each.js +6 -0
  1273. package/full/dom-collections/prototype/keys.js +8 -0
  1274. package/full/dom-collections/prototype/values.js +8 -0
  1275. package/full/error/constructor.js +2 -2
  1276. package/full/error/index.js +3 -2
  1277. package/full/error/is-error.js +6 -0
  1278. package/full/eval-error/constructor.js +6 -0
  1279. package/full/eval-error/index.js +7 -0
  1280. package/full/eval-error/is-error.js +6 -0
  1281. package/full/float32-array/at.js +2 -0
  1282. package/full/float32-array/constructor.js +49 -0
  1283. package/full/float32-array/copy-within.js +2 -0
  1284. package/full/float32-array/entries.js +4 -0
  1285. package/full/float32-array/every.js +2 -0
  1286. package/full/float32-array/fill.js +2 -0
  1287. package/full/float32-array/filter-reject.js +2 -0
  1288. package/full/float32-array/filter.js +2 -0
  1289. package/full/float32-array/find-index.js +2 -0
  1290. package/full/float32-array/find-last-index.js +2 -0
  1291. package/full/float32-array/find-last.js +2 -0
  1292. package/full/float32-array/find.js +2 -0
  1293. package/full/float32-array/for-each.js +2 -0
  1294. package/full/float32-array/from.js +45 -0
  1295. package/full/float32-array/includes.js +2 -0
  1296. package/full/float32-array/index-of.js +2 -0
  1297. package/full/float32-array/index.js +51 -0
  1298. package/full/float32-array/iterator.js +4 -0
  1299. package/full/float32-array/join.js +2 -0
  1300. package/full/float32-array/keys.js +4 -0
  1301. package/full/float32-array/last-index-of.js +2 -0
  1302. package/full/float32-array/map.js +2 -0
  1303. package/full/float32-array/of.js +45 -0
  1304. package/full/float32-array/reduce-right.js +2 -0
  1305. package/full/float32-array/reduce.js +2 -0
  1306. package/full/float32-array/reverse.js +2 -0
  1307. package/full/float32-array/set.js +2 -0
  1308. package/full/float32-array/slice.js +2 -0
  1309. package/full/float32-array/some.js +2 -0
  1310. package/full/float32-array/sort.js +2 -0
  1311. package/full/float32-array/subarray.js +2 -0
  1312. package/full/float32-array/to-locale-string.js +2 -0
  1313. package/full/float32-array/to-reversed.js +2 -0
  1314. package/full/float32-array/to-sorted.js +2 -0
  1315. package/full/float32-array/to-string.js +2 -0
  1316. package/full/float32-array/unique-by.js +7 -0
  1317. package/full/float32-array/values.js +5 -0
  1318. package/full/float32-array/with.js +2 -0
  1319. package/full/float64-array/at.js +2 -0
  1320. package/full/float64-array/constructor.js +49 -0
  1321. package/full/float64-array/copy-within.js +2 -0
  1322. package/full/float64-array/entries.js +4 -0
  1323. package/full/float64-array/every.js +2 -0
  1324. package/full/float64-array/fill.js +2 -0
  1325. package/full/float64-array/filter-reject.js +2 -0
  1326. package/full/float64-array/filter.js +2 -0
  1327. package/full/float64-array/find-index.js +2 -0
  1328. package/full/float64-array/find-last-index.js +2 -0
  1329. package/full/float64-array/find-last.js +2 -0
  1330. package/full/float64-array/find.js +2 -0
  1331. package/full/float64-array/for-each.js +2 -0
  1332. package/full/float64-array/from.js +45 -0
  1333. package/full/float64-array/includes.js +2 -0
  1334. package/full/float64-array/index-of.js +2 -0
  1335. package/full/float64-array/index.js +51 -0
  1336. package/full/float64-array/iterator.js +4 -0
  1337. package/full/float64-array/join.js +2 -0
  1338. package/full/float64-array/keys.js +4 -0
  1339. package/full/float64-array/last-index-of.js +2 -0
  1340. package/full/float64-array/map.js +2 -0
  1341. package/full/float64-array/of.js +45 -0
  1342. package/full/float64-array/reduce-right.js +2 -0
  1343. package/full/float64-array/reduce.js +2 -0
  1344. package/full/float64-array/reverse.js +2 -0
  1345. package/full/float64-array/set.js +2 -0
  1346. package/full/float64-array/slice.js +2 -0
  1347. package/full/float64-array/some.js +2 -0
  1348. package/full/float64-array/sort.js +2 -0
  1349. package/full/float64-array/subarray.js +2 -0
  1350. package/full/float64-array/to-locale-string.js +2 -0
  1351. package/full/float64-array/to-reversed.js +2 -0
  1352. package/full/float64-array/to-sorted.js +2 -0
  1353. package/full/float64-array/to-string.js +2 -0
  1354. package/full/float64-array/unique-by.js +7 -0
  1355. package/full/float64-array/values.js +5 -0
  1356. package/full/float64-array/with.js +2 -0
  1357. package/full/function/instance/name.js +9 -0
  1358. package/full/function/name.js +4 -0
  1359. package/full/index.js +67 -49
  1360. package/full/instance/at.js +2 -2
  1361. package/full/instance/clamp.js +12 -0
  1362. package/full/instance/code-point-at.js +1 -1
  1363. package/full/instance/concat.js +1 -1
  1364. package/full/instance/copy-within.js +1 -1
  1365. package/full/instance/demethodize.js +1 -1
  1366. package/full/instance/ends-with.js +1 -1
  1367. package/full/instance/entries.js +2 -2
  1368. package/full/instance/fill.js +1 -1
  1369. package/full/instance/filter-reject.js +1 -1
  1370. package/full/instance/filter.js +1 -1
  1371. package/full/instance/find-index.js +1 -1
  1372. package/full/instance/find-last-index.js +1 -1
  1373. package/full/instance/find-last.js +1 -1
  1374. package/full/instance/find.js +1 -1
  1375. package/full/instance/flat-map.js +1 -1
  1376. package/full/instance/flat.js +1 -1
  1377. package/full/instance/for-each.js +1 -0
  1378. package/full/instance/includes.js +2 -2
  1379. package/full/instance/index-of.js +1 -1
  1380. package/full/instance/is-well-formed.js +1 -1
  1381. package/full/instance/join.js +11 -0
  1382. package/full/instance/keys.js +2 -2
  1383. package/full/instance/last-index-of.js +1 -1
  1384. package/full/instance/map.js +1 -1
  1385. package/full/instance/match-all.js +1 -1
  1386. package/full/instance/name.js +9 -0
  1387. package/full/instance/pad-end.js +1 -1
  1388. package/full/instance/pad-start.js +1 -1
  1389. package/full/instance/push.js +1 -1
  1390. package/full/instance/reduce-right.js +1 -1
  1391. package/full/instance/reduce.js +1 -1
  1392. package/full/instance/repeat.js +1 -1
  1393. package/full/instance/replace-all.js +1 -1
  1394. package/full/instance/reverse.js +1 -1
  1395. package/full/instance/slice.js +1 -1
  1396. package/full/instance/sort.js +1 -1
  1397. package/full/instance/splice.js +1 -1
  1398. package/full/instance/starts-with.js +1 -1
  1399. package/full/instance/to-exponential.js +12 -0
  1400. package/full/instance/to-fixed.js +12 -0
  1401. package/full/instance/to-reversed.js +1 -1
  1402. package/full/instance/to-sorted.js +1 -1
  1403. package/full/instance/to-spliced.js +1 -1
  1404. package/full/instance/to-well-formed.js +1 -1
  1405. package/full/instance/trim-end.js +1 -1
  1406. package/full/instance/trim-left.js +1 -1
  1407. package/full/instance/trim-right.js +1 -1
  1408. package/full/instance/trim-start.js +1 -1
  1409. package/full/instance/trim.js +1 -1
  1410. package/full/instance/unique-by.js +1 -1
  1411. package/full/instance/unshift.js +1 -1
  1412. package/full/instance/values.js +4 -2
  1413. package/full/instance/with.js +1 -1
  1414. package/full/int16-array/at.js +2 -0
  1415. package/full/int16-array/constructor.js +49 -0
  1416. package/full/int16-array/copy-within.js +2 -0
  1417. package/full/int16-array/entries.js +4 -0
  1418. package/full/int16-array/every.js +2 -0
  1419. package/full/int16-array/fill.js +2 -0
  1420. package/full/int16-array/filter-reject.js +2 -0
  1421. package/full/int16-array/filter.js +2 -0
  1422. package/full/int16-array/find-index.js +2 -0
  1423. package/full/int16-array/find-last-index.js +2 -0
  1424. package/full/int16-array/find-last.js +2 -0
  1425. package/full/int16-array/find.js +2 -0
  1426. package/full/int16-array/for-each.js +2 -0
  1427. package/full/int16-array/from.js +45 -0
  1428. package/full/int16-array/includes.js +2 -0
  1429. package/full/int16-array/index-of.js +2 -0
  1430. package/full/int16-array/index.js +51 -0
  1431. package/full/int16-array/iterator.js +4 -0
  1432. package/full/int16-array/join.js +2 -0
  1433. package/full/int16-array/keys.js +4 -0
  1434. package/full/int16-array/last-index-of.js +2 -0
  1435. package/full/int16-array/map.js +2 -0
  1436. package/full/int16-array/of.js +45 -0
  1437. package/full/int16-array/reduce-right.js +2 -0
  1438. package/full/int16-array/reduce.js +2 -0
  1439. package/full/int16-array/reverse.js +2 -0
  1440. package/full/int16-array/set.js +2 -0
  1441. package/full/int16-array/slice.js +2 -0
  1442. package/full/int16-array/some.js +2 -0
  1443. package/full/int16-array/sort.js +2 -0
  1444. package/full/int16-array/subarray.js +2 -0
  1445. package/full/int16-array/to-locale-string.js +2 -0
  1446. package/full/int16-array/to-reversed.js +2 -0
  1447. package/full/int16-array/to-sorted.js +2 -0
  1448. package/full/int16-array/to-string.js +2 -0
  1449. package/full/int16-array/unique-by.js +7 -0
  1450. package/full/int16-array/values.js +5 -0
  1451. package/full/int16-array/with.js +2 -0
  1452. package/full/int32-array/at.js +2 -0
  1453. package/full/int32-array/constructor.js +49 -0
  1454. package/full/int32-array/copy-within.js +2 -0
  1455. package/full/int32-array/entries.js +4 -0
  1456. package/full/int32-array/every.js +2 -0
  1457. package/full/int32-array/fill.js +2 -0
  1458. package/full/int32-array/filter-reject.js +2 -0
  1459. package/full/int32-array/filter.js +2 -0
  1460. package/full/int32-array/find-index.js +2 -0
  1461. package/full/int32-array/find-last-index.js +2 -0
  1462. package/full/int32-array/find-last.js +2 -0
  1463. package/full/int32-array/find.js +2 -0
  1464. package/full/int32-array/for-each.js +2 -0
  1465. package/full/int32-array/from.js +45 -0
  1466. package/full/int32-array/includes.js +2 -0
  1467. package/full/int32-array/index-of.js +2 -0
  1468. package/full/int32-array/index.js +51 -0
  1469. package/full/int32-array/iterator.js +4 -0
  1470. package/full/int32-array/join.js +2 -0
  1471. package/full/int32-array/keys.js +4 -0
  1472. package/full/int32-array/last-index-of.js +2 -0
  1473. package/full/int32-array/map.js +2 -0
  1474. package/full/int32-array/of.js +45 -0
  1475. package/full/int32-array/reduce-right.js +2 -0
  1476. package/full/int32-array/reduce.js +2 -0
  1477. package/full/int32-array/reverse.js +2 -0
  1478. package/full/int32-array/set.js +2 -0
  1479. package/full/int32-array/slice.js +2 -0
  1480. package/full/int32-array/some.js +2 -0
  1481. package/full/int32-array/sort.js +2 -0
  1482. package/full/int32-array/subarray.js +2 -0
  1483. package/full/int32-array/to-locale-string.js +2 -0
  1484. package/full/int32-array/to-reversed.js +2 -0
  1485. package/full/int32-array/to-sorted.js +2 -0
  1486. package/full/int32-array/to-string.js +2 -0
  1487. package/full/int32-array/unique-by.js +7 -0
  1488. package/full/int32-array/values.js +5 -0
  1489. package/full/int32-array/with.js +2 -0
  1490. package/full/int8-array/at.js +2 -0
  1491. package/full/int8-array/constructor.js +49 -0
  1492. package/full/int8-array/copy-within.js +2 -0
  1493. package/full/int8-array/entries.js +4 -0
  1494. package/full/int8-array/every.js +2 -0
  1495. package/full/int8-array/fill.js +2 -0
  1496. package/full/int8-array/filter-reject.js +2 -0
  1497. package/full/int8-array/filter.js +2 -0
  1498. package/full/int8-array/find-index.js +2 -0
  1499. package/full/int8-array/find-last-index.js +2 -0
  1500. package/full/int8-array/find-last.js +2 -0
  1501. package/full/int8-array/find.js +2 -0
  1502. package/full/int8-array/for-each.js +2 -0
  1503. package/full/int8-array/from.js +45 -0
  1504. package/full/int8-array/includes.js +2 -0
  1505. package/full/int8-array/index-of.js +2 -0
  1506. package/full/int8-array/index.js +51 -0
  1507. package/full/int8-array/iterator.js +4 -0
  1508. package/full/int8-array/join.js +2 -0
  1509. package/full/int8-array/keys.js +4 -0
  1510. package/full/int8-array/last-index-of.js +2 -0
  1511. package/full/int8-array/map.js +2 -0
  1512. package/full/int8-array/of.js +45 -0
  1513. package/full/int8-array/reduce-right.js +2 -0
  1514. package/full/int8-array/reduce.js +2 -0
  1515. package/full/int8-array/reverse.js +2 -0
  1516. package/full/int8-array/set.js +2 -0
  1517. package/full/int8-array/slice.js +2 -0
  1518. package/full/int8-array/some.js +2 -0
  1519. package/full/int8-array/sort.js +2 -0
  1520. package/full/int8-array/subarray.js +2 -0
  1521. package/full/int8-array/to-locale-string.js +2 -0
  1522. package/full/int8-array/to-reversed.js +2 -0
  1523. package/full/int8-array/to-sorted.js +2 -0
  1524. package/full/int8-array/to-string.js +2 -0
  1525. package/full/int8-array/unique-by.js +7 -0
  1526. package/full/int8-array/values.js +5 -0
  1527. package/full/int8-array/with.js +2 -0
  1528. package/full/iterator/chunks.js +8 -0
  1529. package/full/iterator/concat.js +33 -0
  1530. package/full/iterator/constructor.js +17 -13
  1531. package/full/iterator/drop.js +2 -2
  1532. package/full/iterator/every.js +5 -2
  1533. package/full/iterator/filter.js +2 -2
  1534. package/full/iterator/find.js +5 -2
  1535. package/full/iterator/flat-map.js +2 -2
  1536. package/full/iterator/for-each.js +5 -2
  1537. package/full/iterator/from.js +18 -14
  1538. package/full/iterator/includes.js +11 -0
  1539. package/full/iterator/index.js +22 -14
  1540. package/full/iterator/join.js +11 -0
  1541. package/full/iterator/map.js +2 -2
  1542. package/full/iterator/prototype/chunks.js +8 -0
  1543. package/full/iterator/prototype/drop.js +8 -0
  1544. package/full/iterator/prototype/every.js +11 -0
  1545. package/full/iterator/prototype/filter.js +8 -0
  1546. package/full/iterator/prototype/find.js +11 -0
  1547. package/full/iterator/prototype/flat-map.js +11 -0
  1548. package/full/iterator/prototype/for-each.js +11 -0
  1549. package/full/iterator/prototype/includes.js +11 -0
  1550. package/full/iterator/prototype/join.js +11 -0
  1551. package/full/iterator/prototype/map.js +8 -0
  1552. package/full/iterator/prototype/reduce.js +11 -0
  1553. package/full/iterator/prototype/some.js +11 -0
  1554. package/full/iterator/prototype/take.js +8 -0
  1555. package/full/iterator/prototype/to-array.js +11 -0
  1556. package/full/iterator/prototype/to-async.js +13 -0
  1557. package/full/iterator/prototype/windows.js +8 -0
  1558. package/full/iterator/range.js +26 -1
  1559. package/full/iterator/reduce.js +5 -2
  1560. package/full/iterator/some.js +5 -2
  1561. package/full/iterator/take.js +2 -2
  1562. package/full/iterator/to-array.js +5 -2
  1563. package/full/iterator/to-async.js +1 -1
  1564. package/full/iterator/windows.js +8 -0
  1565. package/full/iterator/zip-keyed.js +34 -0
  1566. package/full/iterator/zip.js +33 -0
  1567. package/full/json/index.js +3 -3
  1568. package/full/json/is-raw-json.js +1 -1
  1569. package/full/json/parse.js +1 -1
  1570. package/full/json/raw-json.js +1 -1
  1571. package/full/json/stringify.js +1 -4
  1572. package/full/map/constructor.js +2 -1
  1573. package/full/map/from.js +2 -1
  1574. package/full/map/get-or-insert-computed.js +11 -0
  1575. package/full/map/get-or-insert.js +11 -0
  1576. package/full/map/group-by.js +2 -1
  1577. package/full/map/index.js +2 -1
  1578. package/full/map/of.js +2 -1
  1579. package/full/map/prototype/get-or-insert-computed.js +11 -0
  1580. package/full/map/prototype/get-or-insert.js +11 -0
  1581. package/full/math/f16round.js +1 -1
  1582. package/full/math/index.js +6 -2
  1583. package/full/math/sum-precise.js +10 -0
  1584. package/full/number/clamp.js +6 -0
  1585. package/full/number/index.js +1 -0
  1586. package/full/number/instance/clamp.js +12 -0
  1587. package/full/number/instance/to-exponential.js +12 -0
  1588. package/full/number/instance/to-fixed.js +12 -0
  1589. package/full/number/prototype/clamp.js +6 -0
  1590. package/full/object/create.js +3 -3
  1591. package/full/object/define-properties.js +3 -3
  1592. package/full/object/define-property.js +3 -3
  1593. package/full/object/from-entries.js +2 -0
  1594. package/full/object/get-own-property-descriptor.js +3 -3
  1595. package/full/object/get-own-property-names.js +3 -3
  1596. package/full/object/index.js +1 -0
  1597. package/full/object/keys-length.js +6 -0
  1598. package/full/promise/all-keyed.js +19 -0
  1599. package/full/promise/all-settled-keyed.js +19 -0
  1600. package/full/promise/all-settled.js +3 -3
  1601. package/full/promise/all.js +3 -3
  1602. package/full/promise/any.js +3 -3
  1603. package/full/promise/index.js +4 -1
  1604. package/full/promise/race.js +3 -3
  1605. package/full/promise/reject.js +3 -3
  1606. package/full/promise/resolve.js +3 -3
  1607. package/full/promise/try.js +4 -4
  1608. package/full/promise/with-resolvers.js +2 -2
  1609. package/full/range-error/constructor.js +6 -0
  1610. package/full/range-error/index.js +7 -0
  1611. package/full/range-error/is-error.js +6 -0
  1612. package/full/reference-error/constructor.js +6 -0
  1613. package/full/reference-error/index.js +7 -0
  1614. package/full/reference-error/is-error.js +6 -0
  1615. package/full/regexp/escape.js +3 -1
  1616. package/full/regexp/exec.js +2 -0
  1617. package/full/regexp/index.js +3 -1
  1618. package/full/regexp/instance/flags.js +11 -0
  1619. package/full/regexp/test.js +1 -0
  1620. package/full/set/constructor.js +7 -7
  1621. package/full/set/difference.js +1 -1
  1622. package/full/set/from.js +7 -7
  1623. package/full/set/index.js +7 -7
  1624. package/full/set/intersection.js +1 -1
  1625. package/full/set/is-disjoint-from.js +1 -1
  1626. package/full/set/is-subset-of.js +1 -1
  1627. package/full/set/is-superset-of.js +1 -1
  1628. package/full/set/of.js +7 -7
  1629. package/full/set/prototype/difference.js +11 -0
  1630. package/full/set/prototype/intersection.js +11 -0
  1631. package/full/set/prototype/is-disjoint-from.js +11 -0
  1632. package/full/set/prototype/is-subset-of.js +11 -0
  1633. package/full/set/prototype/is-superset-of.js +11 -0
  1634. package/full/set/prototype/symmetric-difference.js +11 -0
  1635. package/full/set/prototype/union.js +11 -0
  1636. package/full/set/symmetric-difference.js +1 -1
  1637. package/full/set/union.js +1 -1
  1638. package/full/string/dedent.js +1 -0
  1639. package/full/string/index.js +3 -3
  1640. package/full/string/instance/anchor.js +12 -0
  1641. package/full/string/instance/at.js +12 -0
  1642. package/full/string/instance/big.js +12 -0
  1643. package/full/string/instance/blink.js +12 -0
  1644. package/full/string/instance/bold.js +12 -0
  1645. package/full/string/instance/code-point-at.js +12 -0
  1646. package/full/string/instance/ends-with.js +12 -0
  1647. package/full/string/instance/fixed.js +12 -0
  1648. package/full/string/instance/fontcolor.js +12 -0
  1649. package/full/string/instance/fontsize.js +12 -0
  1650. package/full/string/instance/includes.js +12 -0
  1651. package/full/string/instance/is-well-formed.js +12 -0
  1652. package/full/string/instance/italics.js +12 -0
  1653. package/full/string/instance/link.js +12 -0
  1654. package/full/string/instance/match-all.js +12 -0
  1655. package/full/string/instance/pad-end.js +12 -0
  1656. package/full/string/instance/pad-start.js +12 -0
  1657. package/full/string/instance/repeat.js +12 -0
  1658. package/full/string/instance/replace-all.js +12 -0
  1659. package/full/string/instance/small.js +12 -0
  1660. package/full/string/instance/starts-with.js +12 -0
  1661. package/full/string/instance/strike.js +12 -0
  1662. package/full/string/instance/sub.js +12 -0
  1663. package/full/string/instance/sup.js +12 -0
  1664. package/full/string/instance/to-well-formed.js +12 -0
  1665. package/full/string/instance/trim-end.js +12 -0
  1666. package/full/string/instance/trim-left.js +12 -0
  1667. package/full/string/instance/trim-right.js +12 -0
  1668. package/full/string/instance/trim-start.js +12 -0
  1669. package/full/string/instance/trim.js +12 -0
  1670. package/full/string/iterator.js +1 -1
  1671. package/full/string/match.js +0 -4
  1672. package/full/string/prototype/iterator.js +7 -0
  1673. package/full/string/replace.js +0 -4
  1674. package/full/string/search.js +0 -4
  1675. package/full/string/split.js +0 -4
  1676. package/full/suppressed-error/constructor.js +1 -1
  1677. package/full/suppressed-error/index.js +2 -1
  1678. package/full/suppressed-error/is-error.js +6 -0
  1679. package/full/symbol/async-dispose.js +2 -2
  1680. package/full/symbol/custom-matcher.js +6 -0
  1681. package/full/symbol/dispose.js +2 -2
  1682. package/full/symbol/index.js +3 -3
  1683. package/full/syntax-error/constructor.js +6 -0
  1684. package/full/syntax-error/index.js +7 -0
  1685. package/full/syntax-error/is-error.js +6 -0
  1686. package/full/type-error/constructor.js +6 -0
  1687. package/full/type-error/index.js +7 -0
  1688. package/full/type-error/is-error.js +6 -0
  1689. package/full/typed-array/constructors.js +18 -0
  1690. package/full/typed-array/from-base64.js +48 -1
  1691. package/full/typed-array/from-hex.js +48 -1
  1692. package/full/typed-array/from.js +45 -0
  1693. package/full/typed-array/index.js +8 -2
  1694. package/full/typed-array/methods.js +52 -0
  1695. package/full/typed-array/of.js +47 -0
  1696. package/full/typed-array/set-from-base64.js +2 -0
  1697. package/full/typed-array/set-from-hex.js +2 -0
  1698. package/full/typed-array/to-base64.js +1 -1
  1699. package/full/typed-array/to-hex.js +1 -1
  1700. package/full/uint16-array/at.js +2 -0
  1701. package/full/uint16-array/constructor.js +49 -0
  1702. package/full/uint16-array/copy-within.js +2 -0
  1703. package/full/uint16-array/entries.js +4 -0
  1704. package/full/uint16-array/every.js +2 -0
  1705. package/full/uint16-array/fill.js +2 -0
  1706. package/full/uint16-array/filter-reject.js +2 -0
  1707. package/full/uint16-array/filter.js +2 -0
  1708. package/full/uint16-array/find-index.js +2 -0
  1709. package/full/uint16-array/find-last-index.js +2 -0
  1710. package/full/uint16-array/find-last.js +2 -0
  1711. package/full/uint16-array/find.js +2 -0
  1712. package/full/uint16-array/for-each.js +2 -0
  1713. package/full/uint16-array/from.js +45 -0
  1714. package/full/uint16-array/includes.js +2 -0
  1715. package/full/uint16-array/index-of.js +2 -0
  1716. package/full/uint16-array/index.js +51 -0
  1717. package/full/uint16-array/iterator.js +4 -0
  1718. package/full/uint16-array/join.js +2 -0
  1719. package/full/uint16-array/keys.js +4 -0
  1720. package/full/uint16-array/last-index-of.js +2 -0
  1721. package/full/uint16-array/map.js +2 -0
  1722. package/full/uint16-array/of.js +45 -0
  1723. package/full/uint16-array/reduce-right.js +2 -0
  1724. package/full/uint16-array/reduce.js +2 -0
  1725. package/full/uint16-array/reverse.js +2 -0
  1726. package/full/uint16-array/set.js +2 -0
  1727. package/full/uint16-array/slice.js +2 -0
  1728. package/full/uint16-array/some.js +2 -0
  1729. package/full/uint16-array/sort.js +2 -0
  1730. package/full/uint16-array/subarray.js +2 -0
  1731. package/full/uint16-array/to-locale-string.js +2 -0
  1732. package/full/uint16-array/to-reversed.js +2 -0
  1733. package/full/uint16-array/to-sorted.js +2 -0
  1734. package/full/uint16-array/to-string.js +2 -0
  1735. package/full/uint16-array/unique-by.js +7 -0
  1736. package/full/uint16-array/values.js +5 -0
  1737. package/full/uint16-array/with.js +2 -0
  1738. package/full/uint32-array/at.js +2 -0
  1739. package/full/uint32-array/constructor.js +49 -0
  1740. package/full/uint32-array/copy-within.js +2 -0
  1741. package/full/uint32-array/entries.js +4 -0
  1742. package/full/uint32-array/every.js +2 -0
  1743. package/full/uint32-array/fill.js +2 -0
  1744. package/full/uint32-array/filter-reject.js +2 -0
  1745. package/full/uint32-array/filter.js +2 -0
  1746. package/full/uint32-array/find-index.js +2 -0
  1747. package/full/uint32-array/find-last-index.js +2 -0
  1748. package/full/uint32-array/find-last.js +2 -0
  1749. package/full/uint32-array/find.js +2 -0
  1750. package/full/uint32-array/for-each.js +2 -0
  1751. package/full/uint32-array/from.js +45 -0
  1752. package/full/uint32-array/includes.js +2 -0
  1753. package/full/uint32-array/index-of.js +2 -0
  1754. package/full/uint32-array/index.js +51 -0
  1755. package/full/uint32-array/iterator.js +4 -0
  1756. package/full/uint32-array/join.js +2 -0
  1757. package/full/uint32-array/keys.js +4 -0
  1758. package/full/uint32-array/last-index-of.js +2 -0
  1759. package/full/uint32-array/map.js +2 -0
  1760. package/full/uint32-array/of.js +45 -0
  1761. package/full/uint32-array/reduce-right.js +2 -0
  1762. package/full/uint32-array/reduce.js +2 -0
  1763. package/full/uint32-array/reverse.js +2 -0
  1764. package/full/uint32-array/set.js +2 -0
  1765. package/full/uint32-array/slice.js +2 -0
  1766. package/full/uint32-array/some.js +2 -0
  1767. package/full/uint32-array/sort.js +2 -0
  1768. package/full/uint32-array/subarray.js +2 -0
  1769. package/full/uint32-array/to-locale-string.js +2 -0
  1770. package/full/uint32-array/to-reversed.js +2 -0
  1771. package/full/uint32-array/to-sorted.js +2 -0
  1772. package/full/uint32-array/to-string.js +2 -0
  1773. package/full/uint32-array/unique-by.js +7 -0
  1774. package/full/uint32-array/values.js +5 -0
  1775. package/full/uint32-array/with.js +2 -0
  1776. package/full/uint8-array/at.js +2 -0
  1777. package/full/uint8-array/constructor.js +53 -0
  1778. package/full/uint8-array/copy-within.js +2 -0
  1779. package/full/uint8-array/entries.js +4 -0
  1780. package/full/uint8-array/every.js +2 -0
  1781. package/full/uint8-array/fill.js +2 -0
  1782. package/full/uint8-array/filter-reject.js +2 -0
  1783. package/full/uint8-array/filter.js +2 -0
  1784. package/full/uint8-array/find-index.js +2 -0
  1785. package/full/uint8-array/find-last-index.js +2 -0
  1786. package/full/uint8-array/find-last.js +2 -0
  1787. package/full/uint8-array/find.js +2 -0
  1788. package/full/uint8-array/for-each.js +2 -0
  1789. package/full/uint8-array/from-base64.js +49 -0
  1790. package/full/uint8-array/from-hex.js +49 -0
  1791. package/full/uint8-array/from.js +49 -0
  1792. package/full/uint8-array/includes.js +2 -0
  1793. package/full/uint8-array/index-of.js +2 -0
  1794. package/full/uint8-array/index.js +57 -0
  1795. package/full/uint8-array/iterator.js +4 -0
  1796. package/full/uint8-array/join.js +2 -0
  1797. package/full/uint8-array/keys.js +4 -0
  1798. package/full/uint8-array/last-index-of.js +2 -0
  1799. package/full/uint8-array/map.js +2 -0
  1800. package/full/uint8-array/of.js +49 -0
  1801. package/full/uint8-array/reduce-right.js +2 -0
  1802. package/full/uint8-array/reduce.js +2 -0
  1803. package/full/uint8-array/reverse.js +2 -0
  1804. package/full/uint8-array/set-from-base64.js +2 -0
  1805. package/full/uint8-array/set-from-hex.js +2 -0
  1806. package/full/uint8-array/set.js +2 -0
  1807. package/full/uint8-array/slice.js +2 -0
  1808. package/full/uint8-array/some.js +2 -0
  1809. package/full/uint8-array/sort.js +2 -0
  1810. package/full/uint8-array/subarray.js +2 -0
  1811. package/full/uint8-array/to-base64.js +2 -0
  1812. package/full/uint8-array/to-hex.js +2 -0
  1813. package/full/uint8-array/to-locale-string.js +2 -0
  1814. package/full/uint8-array/to-reversed.js +2 -0
  1815. package/full/uint8-array/to-sorted.js +2 -0
  1816. package/full/uint8-array/to-string.js +2 -0
  1817. package/full/uint8-array/unique-by.js +7 -0
  1818. package/full/uint8-array/values.js +5 -0
  1819. package/full/uint8-array/with.js +2 -0
  1820. package/full/uint8-clamped-array/at.js +2 -0
  1821. package/full/uint8-clamped-array/constructor.js +49 -0
  1822. package/full/uint8-clamped-array/copy-within.js +2 -0
  1823. package/full/uint8-clamped-array/entries.js +4 -0
  1824. package/full/uint8-clamped-array/every.js +2 -0
  1825. package/full/uint8-clamped-array/fill.js +2 -0
  1826. package/full/uint8-clamped-array/filter-reject.js +2 -0
  1827. package/full/uint8-clamped-array/filter.js +2 -0
  1828. package/full/uint8-clamped-array/find-index.js +2 -0
  1829. package/full/uint8-clamped-array/find-last-index.js +2 -0
  1830. package/full/uint8-clamped-array/find-last.js +2 -0
  1831. package/full/uint8-clamped-array/find.js +2 -0
  1832. package/full/uint8-clamped-array/for-each.js +2 -0
  1833. package/full/uint8-clamped-array/from.js +45 -0
  1834. package/full/uint8-clamped-array/includes.js +2 -0
  1835. package/full/uint8-clamped-array/index-of.js +2 -0
  1836. package/full/uint8-clamped-array/index.js +51 -0
  1837. package/full/uint8-clamped-array/iterator.js +4 -0
  1838. package/full/uint8-clamped-array/join.js +2 -0
  1839. package/full/uint8-clamped-array/keys.js +4 -0
  1840. package/full/uint8-clamped-array/last-index-of.js +2 -0
  1841. package/full/uint8-clamped-array/map.js +2 -0
  1842. package/full/uint8-clamped-array/of.js +45 -0
  1843. package/full/uint8-clamped-array/reduce-right.js +2 -0
  1844. package/full/uint8-clamped-array/reduce.js +2 -0
  1845. package/full/uint8-clamped-array/reverse.js +2 -0
  1846. package/full/uint8-clamped-array/set.js +2 -0
  1847. package/full/uint8-clamped-array/slice.js +2 -0
  1848. package/full/uint8-clamped-array/some.js +2 -0
  1849. package/full/uint8-clamped-array/sort.js +2 -0
  1850. package/full/uint8-clamped-array/subarray.js +2 -0
  1851. package/full/uint8-clamped-array/to-locale-string.js +2 -0
  1852. package/full/uint8-clamped-array/to-reversed.js +2 -0
  1853. package/full/uint8-clamped-array/to-sorted.js +2 -0
  1854. package/full/uint8-clamped-array/to-string.js +2 -0
  1855. package/full/uint8-clamped-array/unique-by.js +7 -0
  1856. package/full/uint8-clamped-array/values.js +5 -0
  1857. package/full/uint8-clamped-array/with.js +2 -0
  1858. package/full/uri-error/constructor.js +6 -0
  1859. package/full/uri-error/index.js +7 -0
  1860. package/full/uri-error/is-error.js +6 -0
  1861. package/full/url/can-parse.js +2 -0
  1862. package/full/url/constructor.js +18 -0
  1863. package/full/url/index.js +3 -0
  1864. package/full/url/parse.js +15 -0
  1865. package/full/url/to-json.js +2 -4
  1866. package/full/url-search-params/constructor.js +14 -0
  1867. package/full/url-search-params/index.js +3 -0
  1868. package/full/weak-map/constructor.js +3 -1
  1869. package/full/weak-map/from.js +2 -1
  1870. package/full/weak-map/get-or-insert-computed.js +11 -0
  1871. package/full/weak-map/get-or-insert.js +11 -0
  1872. package/full/weak-map/index.js +2 -1
  1873. package/full/weak-map/of.js +3 -1
  1874. package/full/weak-map/prototype/get-or-insert-computed.js +11 -0
  1875. package/full/weak-map/prototype/get-or-insert.js +11 -0
  1876. package/full/weak-set/constructor.js +1 -0
  1877. package/full/weak-set/of.js +1 -0
  1878. package/index.js +58 -44
  1879. package/internals/a-number.js +7 -0
  1880. package/internals/a-weak-key.js +12 -0
  1881. package/internals/add-disposable-resource.js +10 -2
  1882. package/internals/advance-string-index.js +1 -1
  1883. package/internals/array-buffer-is-detached.js +4 -4
  1884. package/internals/array-buffer-not-detached.js +9 -0
  1885. package/internals/array-buffer-transfer.js +7 -5
  1886. package/internals/array-fill.js +2 -1
  1887. package/internals/array-iteration.js +9 -11
  1888. package/internals/array-iterator-constructor.js +1 -1
  1889. package/internals/array-method-has-species-support.js +1 -1
  1890. package/internals/array-species-constructor.js +1 -0
  1891. package/internals/array-unique-by.js +3 -3
  1892. package/internals/async-from-sync-iterator.js +47 -12
  1893. package/internals/async-iterator-close.js +15 -7
  1894. package/internals/async-iterator-create-proxy.js +67 -28
  1895. package/internals/async-iterator-iteration.js +21 -11
  1896. package/internals/check-correctness-of-iteration.js +2 -0
  1897. package/internals/collection-from.js +3 -3
  1898. package/internals/collection-strong.js +12 -11
  1899. package/internals/collection-weak.js +4 -4
  1900. package/internals/detach-transferable.js +2 -2
  1901. package/internals/document-create-element.js +1 -3
  1902. package/internals/does-not-exceed-safe-integer.js +1 -1
  1903. package/internals/environment-ff-version.js +6 -0
  1904. package/internals/environment-is-ie-or-edge.js +4 -0
  1905. package/internals/environment-is-ios-pebble.js +4 -0
  1906. package/internals/environment-is-ios.js +4 -0
  1907. package/internals/environment-is-node.js +4 -0
  1908. package/internals/environment-is-webos-webkit.js +4 -0
  1909. package/internals/environment-user-agent.js +7 -0
  1910. package/internals/environment-v8-version.js +28 -0
  1911. package/internals/environment-webkit-version.js +6 -0
  1912. package/internals/environment.js +21 -0
  1913. package/internals/error-stack-clear.js +1 -1
  1914. package/internals/error-stack-install.js +1 -0
  1915. package/internals/fix-regexp-well-known-symbol-logic.js +6 -4
  1916. package/internals/flatten-into-array.js +3 -2
  1917. package/internals/function-get-name.js +18 -0
  1918. package/internals/function-name.js +1 -1
  1919. package/internals/get-async-iterator-flattenable.js +3 -3
  1920. package/internals/get-built-in-node-module.js +15 -0
  1921. package/internals/get-iterator-direct.js +1 -1
  1922. package/internals/get-iterator-flattenable.js +3 -3
  1923. package/internals/get-iterator-method.js +3 -0
  1924. package/internals/get-iterator-record.js +7 -0
  1925. package/internals/get-mode-option.js +8 -0
  1926. package/internals/get-substitution.js +2 -3
  1927. package/internals/install-error-cause.js +1 -1
  1928. package/internals/iterate.js +8 -3
  1929. package/internals/iterator-cleanup-state.js +5 -0
  1930. package/internals/iterator-close-all.js +16 -0
  1931. package/internals/iterator-create-proxy.js +28 -9
  1932. package/internals/iterator-helper-throws-on-invalid-iterator.js +12 -0
  1933. package/internals/iterator-helper-without-closing-on-early-error.js +23 -0
  1934. package/internals/iterator-zip.js +101 -0
  1935. package/internals/map-helpers.js +1 -1
  1936. package/internals/math-round-ties-to-even.js +7 -0
  1937. package/internals/microtask.js +4 -4
  1938. package/internals/native-raw-json.js +2 -0
  1939. package/internals/object-prototype-accessors-forced.js +3 -2
  1940. package/internals/object-set-prototype-of.js +4 -2
  1941. package/internals/promise-constructor-detection.js +3 -4
  1942. package/internals/regexp-exec-abstract.js +1 -1
  1943. package/internals/regexp-exec.js +19 -13
  1944. package/internals/regexp-flags-detection.js +47 -0
  1945. package/internals/regexp-get-flags.js +8 -5
  1946. package/internals/set-helpers.js +1 -1
  1947. package/internals/set-method-accept-set-like.js +26 -3
  1948. package/internals/set-method-get-keys-before-cloning-detection.js +28 -0
  1949. package/internals/set-to-string-tag.js +1 -1
  1950. package/internals/shared-store.js +3 -3
  1951. package/internals/string-pad-webkit-bug.js +1 -1
  1952. package/internals/string-pad.js +3 -3
  1953. package/internals/string-parse.js +5 -6
  1954. package/internals/structured-clone-proper-transfer.js +3 -5
  1955. package/internals/symbol-constructor-detection.js +1 -1
  1956. package/internals/task.js +2 -2
  1957. package/internals/this-number-value.js +1 -1
  1958. package/internals/to-string-tag-support.js +1 -1
  1959. package/internals/typed-array-constructor.js +1 -0
  1960. package/internals/typed-array-constructors-require-wrappers.js +1 -1
  1961. package/internals/typed-array-from-same-type-and-list.js +7 -0
  1962. package/internals/typed-array-from.js +4 -2
  1963. package/internals/uid.js +1 -1
  1964. package/internals/uint8-from-base64.js +153 -0
  1965. package/internals/uint8-from-hex.js +26 -0
  1966. package/internals/url-constructor-detection.js +5 -5
  1967. package/internals/use-symbol-as-uid.js +3 -3
  1968. package/internals/weak-map-helpers.js +1 -1
  1969. package/internals/weak-set-helpers.js +1 -1
  1970. package/modules/es.aggregate-error.cause.js +3 -1
  1971. package/modules/es.aggregate-error.constructor.js +3 -1
  1972. package/modules/es.array-buffer.constructor.js +5 -6
  1973. package/modules/es.array-buffer.detached.js +3 -0
  1974. package/modules/es.array-buffer.slice.js +1 -2
  1975. package/modules/es.array-buffer.transfer-to-fixed-length.js +2 -1
  1976. package/modules/es.array-buffer.transfer.js +2 -1
  1977. package/modules/es.array.at.js +1 -0
  1978. package/modules/es.array.concat.js +3 -2
  1979. package/modules/es.array.find-last-index.js +1 -0
  1980. package/modules/es.array.find-last.js +1 -0
  1981. package/modules/es.array.flat-map.js +3 -1
  1982. package/modules/es.array.flat.js +4 -1
  1983. package/modules/es.array.from-async.js +70 -0
  1984. package/modules/es.array.from.js +11 -5
  1985. package/modules/es.array.includes.js +8 -1
  1986. package/modules/es.array.iterator.js +0 -1
  1987. package/modules/es.array.of.js +2 -1
  1988. package/modules/es.array.reduce-right.js +2 -2
  1989. package/modules/es.array.reduce.js +2 -2
  1990. package/modules/es.array.slice.js +2 -1
  1991. package/modules/es.array.sort.js +8 -10
  1992. package/modules/es.array.splice.js +1 -1
  1993. package/modules/es.array.to-reversed.js +9 -2
  1994. package/modules/es.array.to-sorted.js +2 -1
  1995. package/modules/es.array.to-spliced.js +6 -4
  1996. package/modules/es.array.unshift.js +1 -4
  1997. package/modules/es.array.values.js +1 -1
  1998. package/modules/es.array.with.js +25 -3
  1999. package/modules/es.async-disposable-stack.constructor.js +136 -0
  2000. package/modules/es.async-iterator.async-dispose.js +31 -0
  2001. package/modules/es.data-view.constructor.js +36 -1
  2002. package/modules/es.data-view.get-float16.js +30 -0
  2003. package/modules/es.data-view.set-float16.js +58 -0
  2004. package/modules/es.disposable-stack.constructor.js +111 -0
  2005. package/modules/es.error.cause.js +3 -0
  2006. package/modules/es.error.is-error.js +38 -0
  2007. package/modules/es.function.name.js +5 -15
  2008. package/modules/es.iterator.concat.js +59 -0
  2009. package/modules/es.iterator.constructor.js +66 -0
  2010. package/modules/es.iterator.dispose.js +18 -0
  2011. package/modules/es.iterator.drop.js +55 -0
  2012. package/modules/es.iterator.every.js +32 -0
  2013. package/modules/es.iterator.filter.js +53 -0
  2014. package/modules/es.iterator.find.js +32 -0
  2015. package/modules/es.iterator.flat-map.js +77 -0
  2016. package/modules/es.iterator.for-each.js +32 -0
  2017. package/modules/es.iterator.from.js +37 -0
  2018. package/modules/es.iterator.map.js +46 -0
  2019. package/modules/es.iterator.reduce.js +52 -0
  2020. package/modules/es.iterator.some.js +32 -0
  2021. package/modules/es.iterator.take.js +51 -0
  2022. package/modules/es.iterator.to-array.js +20 -0
  2023. package/modules/es.json.is-raw-json.js +12 -0
  2024. package/modules/es.json.parse.js +257 -0
  2025. package/modules/es.json.raw-json.js +36 -0
  2026. package/modules/es.json.stringify.js +84 -22
  2027. package/modules/es.map.get-or-insert-computed.js +25 -0
  2028. package/modules/es.map.get-or-insert.js +19 -0
  2029. package/modules/es.map.group-by.js +14 -5
  2030. package/modules/es.math.asinh.js +4 -1
  2031. package/modules/es.math.atanh.js +2 -2
  2032. package/modules/es.math.f16round.js +30 -0
  2033. package/modules/es.math.sum-precise.js +152 -0
  2034. package/modules/es.number.parse-float.js +1 -1
  2035. package/modules/es.number.parse-int.js +1 -1
  2036. package/modules/es.number.to-exponential.js +17 -12
  2037. package/modules/es.number.to-fixed.js +2 -2
  2038. package/modules/es.object.define-getter.js +1 -0
  2039. package/modules/es.object.define-setter.js +1 -0
  2040. package/modules/es.object.entries.js +1 -0
  2041. package/modules/es.object.from-entries.js +3 -2
  2042. package/modules/es.object.get-own-property-descriptors.js +1 -0
  2043. package/modules/es.object.group-by.js +18 -6
  2044. package/modules/es.object.has-own.js +1 -0
  2045. package/modules/es.object.lookup-getter.js +1 -0
  2046. package/modules/es.object.lookup-setter.js +1 -0
  2047. package/modules/es.object.proto.js +1 -0
  2048. package/modules/es.object.values.js +1 -0
  2049. package/modules/es.promise.all-settled.js +8 -7
  2050. package/modules/es.promise.all.js +7 -7
  2051. package/modules/es.promise.any.js +9 -8
  2052. package/modules/es.promise.catch.js +1 -1
  2053. package/modules/es.promise.constructor.js +7 -2
  2054. package/modules/es.promise.finally.js +2 -1
  2055. package/modules/es.promise.race.js +7 -7
  2056. package/modules/es.promise.reject.js +3 -3
  2057. package/modules/es.promise.resolve.js +3 -3
  2058. package/modules/es.promise.try.js +37 -0
  2059. package/modules/es.promise.with-resolvers.js +5 -4
  2060. package/modules/es.reflect.construct.js +1 -1
  2061. package/modules/es.reflect.define-property.js +10 -0
  2062. package/modules/es.reflect.delete-property.js +5 -2
  2063. package/modules/es.reflect.get.js +9 -7
  2064. package/modules/es.reflect.set.js +14 -9
  2065. package/modules/es.regexp.constructor.js +27 -8
  2066. package/modules/es.regexp.dot-all.js +1 -0
  2067. package/modules/es.regexp.escape.js +72 -0
  2068. package/modules/es.regexp.exec.js +2 -0
  2069. package/modules/es.regexp.flags.js +11 -50
  2070. package/modules/es.regexp.test.js +1 -0
  2071. package/modules/es.set.difference.js +57 -0
  2072. package/modules/es.set.intersection.js +44 -0
  2073. package/modules/es.set.is-disjoint-from.js +31 -0
  2074. package/modules/es.set.is-subset-of.js +25 -0
  2075. package/modules/es.set.is-superset-of.js +28 -0
  2076. package/modules/es.set.symmetric-difference.js +31 -0
  2077. package/modules/es.set.union.js +26 -0
  2078. package/modules/es.string.at.js +2 -1
  2079. package/modules/es.string.ends-with.js +1 -1
  2080. package/modules/es.string.from-code-point.js +2 -2
  2081. package/modules/es.string.is-well-formed.js +2 -1
  2082. package/modules/es.string.match-all.js +4 -3
  2083. package/modules/es.string.match.js +10 -4
  2084. package/modules/es.string.pad-end.js +1 -0
  2085. package/modules/es.string.pad-start.js +1 -0
  2086. package/modules/es.string.repeat.js +2 -1
  2087. package/modules/es.string.replace-all.js +7 -10
  2088. package/modules/es.string.replace.js +12 -9
  2089. package/modules/es.string.search.js +2 -2
  2090. package/modules/es.string.split.js +9 -7
  2091. package/modules/es.string.starts-with.js +1 -1
  2092. package/modules/es.string.to-well-formed.js +3 -2
  2093. package/modules/es.string.trim-end.js +1 -0
  2094. package/modules/es.string.trim-left.js +1 -0
  2095. package/modules/es.string.trim-right.js +1 -0
  2096. package/modules/es.string.trim-start.js +1 -0
  2097. package/modules/es.suppressed-error.constructor.js +54 -0
  2098. package/modules/es.symbol.async-dispose.js +20 -0
  2099. package/modules/es.symbol.async-iterator.js +1 -0
  2100. package/modules/es.symbol.constructor.js +5 -3
  2101. package/modules/es.symbol.description.js +11 -0
  2102. package/modules/es.symbol.dispose.js +20 -0
  2103. package/modules/es.symbol.for.js +2 -2
  2104. package/modules/es.symbol.match-all.js +1 -0
  2105. package/modules/es.typed-array.at.js +1 -0
  2106. package/modules/es.typed-array.entries.js +1 -1
  2107. package/modules/es.typed-array.filter.js +2 -2
  2108. package/modules/es.typed-array.find-last-index.js +1 -0
  2109. package/modules/es.typed-array.find-last.js +1 -0
  2110. package/modules/es.typed-array.includes.js +1 -0
  2111. package/modules/es.typed-array.iterator.js +1 -1
  2112. package/modules/es.typed-array.keys.js +1 -1
  2113. package/modules/es.typed-array.map.js +3 -4
  2114. package/modules/es.typed-array.set.js +2 -2
  2115. package/modules/es.typed-array.slice.js +2 -2
  2116. package/modules/es.typed-array.sort.js +7 -7
  2117. package/modules/es.typed-array.subarray.js +2 -2
  2118. package/modules/es.typed-array.to-locale-string.js +4 -12
  2119. package/modules/es.typed-array.to-reversed.js +8 -2
  2120. package/modules/es.typed-array.to-sorted.js +1 -0
  2121. package/modules/es.typed-array.to-string.js +1 -2
  2122. package/modules/es.typed-array.values.js +1 -1
  2123. package/modules/es.typed-array.with.js +24 -5
  2124. package/modules/es.uint8-array.from-base64.js +31 -0
  2125. package/modules/es.uint8-array.from-hex.js +13 -0
  2126. package/modules/es.uint8-array.set-from-base64.js +36 -0
  2127. package/modules/es.uint8-array.set-from-hex.js +32 -0
  2128. package/modules/es.uint8-array.to-base64.js +56 -0
  2129. package/modules/es.uint8-array.to-hex.js +35 -0
  2130. package/modules/es.weak-map.constructor.js +1 -1
  2131. package/modules/es.weak-map.get-or-insert-computed.js +37 -0
  2132. package/modules/es.weak-map.get-or-insert.js +19 -0
  2133. package/modules/es.weak-set.constructor.js +1 -1
  2134. package/modules/esnext.array.filter-reject.js +1 -0
  2135. package/modules/esnext.array.is-template-object.js +2 -1
  2136. package/modules/esnext.array.unique-by.js +1 -0
  2137. package/modules/esnext.async-iterator.constructor.js +2 -1
  2138. package/modules/esnext.async-iterator.drop.js +3 -3
  2139. package/modules/esnext.async-iterator.every.js +3 -2
  2140. package/modules/esnext.async-iterator.filter.js +3 -3
  2141. package/modules/esnext.async-iterator.find.js +3 -2
  2142. package/modules/esnext.async-iterator.flat-map.js +4 -4
  2143. package/modules/esnext.async-iterator.for-each.js +3 -2
  2144. package/modules/esnext.async-iterator.from.js +3 -3
  2145. package/modules/esnext.async-iterator.map.js +23 -21
  2146. package/modules/esnext.async-iterator.reduce.js +9 -8
  2147. package/modules/esnext.async-iterator.some.js +3 -2
  2148. package/modules/esnext.async-iterator.take.js +7 -5
  2149. package/modules/esnext.async-iterator.to-array.js +3 -2
  2150. package/modules/esnext.data-view.get-uint8-clamped.js +1 -0
  2151. package/modules/esnext.data-view.set-uint8-clamped.js +16 -5
  2152. package/modules/esnext.function.demethodize.js +1 -0
  2153. package/modules/esnext.function.metadata.js +1 -0
  2154. package/modules/esnext.iterator.chunks.js +46 -0
  2155. package/modules/esnext.iterator.includes.js +43 -0
  2156. package/modules/esnext.iterator.join.js +32 -0
  2157. package/modules/esnext.iterator.range.js +11 -6
  2158. package/modules/esnext.iterator.to-async.js +3 -3
  2159. package/modules/esnext.iterator.windows.js +56 -0
  2160. package/modules/esnext.iterator.zip-keyed.js +75 -0
  2161. package/modules/esnext.iterator.zip.js +94 -0
  2162. package/modules/esnext.map.from.js +2 -1
  2163. package/modules/esnext.map.of.js +2 -1
  2164. package/modules/esnext.number.clamp.js +16 -0
  2165. package/modules/esnext.object.keys-length.js +14 -0
  2166. package/modules/esnext.promise.all-keyed.js +67 -0
  2167. package/modules/esnext.promise.all-settled-keyed.js +70 -0
  2168. package/modules/esnext.set.from.js +2 -1
  2169. package/modules/esnext.set.of.js +2 -1
  2170. package/modules/esnext.string.cooked.js +1 -0
  2171. package/modules/esnext.string.dedent.js +2 -0
  2172. package/modules/esnext.symbol.custom-matcher.js +7 -0
  2173. package/modules/esnext.symbol.is-registered-symbol.js +3 -2
  2174. package/modules/esnext.symbol.is-well-known-symbol.js +2 -2
  2175. package/modules/esnext.symbol.metadata.js +1 -0
  2176. package/modules/esnext.typed-array.filter-reject.js +3 -2
  2177. package/modules/esnext.typed-array.unique-by.js +1 -0
  2178. package/modules/esnext.weak-map.from.js +2 -1
  2179. package/modules/esnext.weak-map.of.js +2 -1
  2180. package/modules/esnext.weak-set.from.js +2 -1
  2181. package/modules/esnext.weak-set.of.js +2 -1
  2182. package/modules/web.atob.js +19 -9
  2183. package/modules/web.btoa.js +14 -6
  2184. package/modules/web.clear-immediate.js +1 -0
  2185. package/modules/web.dom-collections.entries.js +2 -1
  2186. package/modules/web.dom-collections.for-each.js +1 -0
  2187. package/modules/web.dom-collections.iterator.js +2 -1
  2188. package/modules/web.dom-collections.keys.js +2 -1
  2189. package/modules/web.dom-collections.values.js +2 -1
  2190. package/modules/web.dom-exception.constructor.js +3 -2
  2191. package/modules/web.dom-exception.stack.js +2 -1
  2192. package/modules/web.dom-exception.to-string-tag.js +1 -0
  2193. package/modules/web.queue-microtask.js +11 -1
  2194. package/modules/web.self.js +1 -0
  2195. package/modules/web.set-immediate.js +3 -2
  2196. package/modules/web.structured-clone.js +15 -9
  2197. package/modules/web.url-search-params.constructor.js +138 -27
  2198. package/modules/web.url-search-params.delete.js +8 -10
  2199. package/modules/web.url-search-params.has.js +2 -1
  2200. package/modules/web.url-search-params.size.js +2 -1
  2201. package/modules/web.url.can-parse.js +9 -2
  2202. package/modules/web.url.constructor.js +73 -40
  2203. package/modules/web.url.parse.js +25 -0
  2204. package/modules/web.url.to-json.js +2 -1
  2205. package/package.json +793 -5
  2206. package/proposals/accessible-object-hasownproperty.js +2 -0
  2207. package/proposals/array-buffer-base64.js +8 -4
  2208. package/proposals/array-buffer-transfer.js +2 -0
  2209. package/proposals/array-filtering.js +2 -0
  2210. package/proposals/array-find-from-last.js +2 -0
  2211. package/proposals/array-flat-map.js +2 -0
  2212. package/proposals/array-from-async.js +4 -1
  2213. package/proposals/array-grouping.js +2 -0
  2214. package/proposals/array-includes.js +2 -0
  2215. package/proposals/array-is-template-object.js +2 -0
  2216. package/proposals/array-unique.js +2 -0
  2217. package/proposals/async-iteration.js +2 -0
  2218. package/proposals/async-iterator-helpers.js +3 -1
  2219. package/proposals/change-array-by-copy.js +2 -0
  2220. package/proposals/collection-of-from.js +2 -0
  2221. package/proposals/data-view-get-set-uint8-clamped.js +2 -0
  2222. package/proposals/decorator-metadata.js +2 -0
  2223. package/proposals/error-cause.js +4 -0
  2224. package/proposals/explicit-resource-management.js +9 -7
  2225. package/proposals/extractors.js +4 -0
  2226. package/proposals/float16.js +6 -3
  2227. package/proposals/function-demethodize.js +2 -0
  2228. package/proposals/global-this.js +2 -0
  2229. package/proposals/is-error.js +4 -0
  2230. package/proposals/iterator-chunking.js +7 -0
  2231. package/proposals/iterator-helpers.js +15 -13
  2232. package/proposals/iterator-includes.js +9 -0
  2233. package/proposals/iterator-join.js +9 -0
  2234. package/proposals/iterator-range.js +3 -1
  2235. package/proposals/iterator-sequencing.js +9 -0
  2236. package/proposals/joint-iteration.js +11 -0
  2237. package/proposals/json-parse-with-source.js +7 -3
  2238. package/proposals/map-upsert.js +13 -0
  2239. package/proposals/math-clamp.js +4 -0
  2240. package/proposals/math-sum.js +8 -0
  2241. package/proposals/object-from-entries.js +4 -0
  2242. package/proposals/object-getownpropertydescriptors.js +2 -0
  2243. package/proposals/object-keys-length.js +4 -0
  2244. package/proposals/object-values-entries.js +2 -0
  2245. package/proposals/pattern-matching.js +3 -1
  2246. package/proposals/promise-all-keyed.js +11 -0
  2247. package/proposals/promise-all-settled.js +2 -0
  2248. package/proposals/promise-any.js +2 -0
  2249. package/proposals/promise-finally.js +2 -0
  2250. package/proposals/promise-try.js +3 -1
  2251. package/proposals/promise-with-resolvers.js +2 -0
  2252. package/proposals/regexp-dotall-flag.js +2 -0
  2253. package/proposals/regexp-escaping.js +5 -1
  2254. package/proposals/regexp-named-groups.js +2 -0
  2255. package/proposals/relative-indexing-method.js +2 -0
  2256. package/proposals/set-methods.js +9 -7
  2257. package/proposals/string-cooked.js +2 -0
  2258. package/proposals/string-dedent.js +3 -0
  2259. package/proposals/string-left-right-trim.js +2 -0
  2260. package/proposals/string-match-all.js +2 -0
  2261. package/proposals/string-padding.js +2 -0
  2262. package/proposals/string-replace-all.js +2 -0
  2263. package/proposals/symbol-description.js +2 -0
  2264. package/proposals/symbol-predicates.js +2 -0
  2265. package/proposals/well-formed-stringify.js +2 -0
  2266. package/proposals/well-formed-unicode-strings.js +2 -0
  2267. package/stable/aggregate-error/constructor.js +2 -0
  2268. package/stable/aggregate-error/index.js +3 -0
  2269. package/stable/aggregate-error/is-error.js +6 -0
  2270. package/stable/array/from-async.js +14 -0
  2271. package/stable/array/from.js +2 -0
  2272. package/stable/array/index.js +6 -0
  2273. package/stable/array/instance/at.js +11 -0
  2274. package/stable/array/instance/concat.js +11 -0
  2275. package/stable/array/instance/copy-within.js +11 -0
  2276. package/stable/array/instance/entries.js +11 -0
  2277. package/stable/array/instance/fill.js +11 -0
  2278. package/stable/array/instance/filter.js +11 -0
  2279. package/stable/array/instance/find-index.js +11 -0
  2280. package/stable/array/instance/find-last-index.js +11 -0
  2281. package/stable/array/instance/find-last.js +11 -0
  2282. package/stable/array/instance/find.js +11 -0
  2283. package/stable/array/instance/flat-map.js +11 -0
  2284. package/stable/array/instance/flat.js +11 -0
  2285. package/stable/array/instance/includes.js +11 -0
  2286. package/stable/array/instance/index-of.js +11 -0
  2287. package/stable/array/instance/join.js +11 -0
  2288. package/stable/array/instance/keys.js +11 -0
  2289. package/stable/array/instance/last-index-of.js +11 -0
  2290. package/stable/array/instance/map.js +11 -0
  2291. package/stable/array/instance/push.js +11 -0
  2292. package/stable/array/instance/reduce-right.js +11 -0
  2293. package/stable/array/instance/reduce.js +11 -0
  2294. package/stable/array/instance/reverse.js +11 -0
  2295. package/stable/array/instance/slice.js +11 -0
  2296. package/stable/array/instance/sort.js +11 -0
  2297. package/stable/array/instance/splice.js +11 -0
  2298. package/stable/array/instance/to-reversed.js +11 -0
  2299. package/stable/array/instance/to-sorted.js +11 -0
  2300. package/stable/array/instance/to-spliced.js +11 -0
  2301. package/stable/array/instance/unshift.js +11 -0
  2302. package/stable/array/instance/values.js +11 -0
  2303. package/stable/array/instance/with.js +11 -0
  2304. package/stable/array/iterator.js +1 -1
  2305. package/stable/array/prototype/iterator.js +7 -0
  2306. package/stable/array/prototype/values.js +10 -0
  2307. package/stable/array/values.js +2 -0
  2308. package/stable/array-buffer/detached.js +0 -1
  2309. package/stable/async-disposable-stack/constructor.js +14 -0
  2310. package/stable/async-disposable-stack/index.js +14 -0
  2311. package/stable/async-iterator/index.js +11 -0
  2312. package/stable/data-view/constructor.js +3 -0
  2313. package/stable/data-view/get-float16.js +2 -0
  2314. package/stable/data-view/index.js +3 -0
  2315. package/stable/data-view/set-float16.js +3 -0
  2316. package/stable/disposable-stack/constructor.js +9 -0
  2317. package/stable/disposable-stack/index.js +9 -0
  2318. package/stable/dom-collections/instance/entries.js +21 -0
  2319. package/stable/dom-collections/instance/for-each.js +19 -0
  2320. package/stable/dom-collections/instance/keys.js +21 -0
  2321. package/stable/dom-collections/instance/values.js +21 -0
  2322. package/stable/dom-collections/prototype/entries.js +8 -0
  2323. package/stable/dom-collections/prototype/for-each.js +6 -0
  2324. package/stable/dom-collections/prototype/keys.js +8 -0
  2325. package/stable/dom-collections/prototype/values.js +8 -0
  2326. package/stable/error/constructor.js +2 -2
  2327. package/stable/error/index.js +3 -2
  2328. package/stable/error/is-error.js +6 -0
  2329. package/stable/eval-error/constructor.js +6 -0
  2330. package/stable/eval-error/index.js +7 -0
  2331. package/stable/eval-error/is-error.js +6 -0
  2332. package/stable/float32-array/at.js +2 -0
  2333. package/stable/float32-array/constructor.js +46 -0
  2334. package/stable/float32-array/copy-within.js +2 -0
  2335. package/stable/float32-array/entries.js +4 -0
  2336. package/stable/float32-array/every.js +2 -0
  2337. package/stable/float32-array/fill.js +2 -0
  2338. package/stable/float32-array/filter.js +2 -0
  2339. package/stable/float32-array/find-index.js +2 -0
  2340. package/stable/float32-array/find-last-index.js +2 -0
  2341. package/stable/float32-array/find-last.js +2 -0
  2342. package/stable/float32-array/find.js +2 -0
  2343. package/stable/float32-array/for-each.js +2 -0
  2344. package/stable/float32-array/from.js +42 -0
  2345. package/stable/float32-array/includes.js +2 -0
  2346. package/stable/float32-array/index-of.js +2 -0
  2347. package/stable/float32-array/index.js +48 -0
  2348. package/stable/float32-array/iterator.js +4 -0
  2349. package/stable/float32-array/join.js +2 -0
  2350. package/stable/float32-array/keys.js +4 -0
  2351. package/stable/float32-array/last-index-of.js +2 -0
  2352. package/stable/float32-array/map.js +2 -0
  2353. package/stable/float32-array/of.js +40 -0
  2354. package/stable/float32-array/reduce-right.js +2 -0
  2355. package/stable/float32-array/reduce.js +2 -0
  2356. package/stable/float32-array/reverse.js +2 -0
  2357. package/stable/float32-array/set.js +2 -0
  2358. package/stable/float32-array/slice.js +2 -0
  2359. package/stable/float32-array/some.js +2 -0
  2360. package/stable/float32-array/sort.js +2 -0
  2361. package/stable/float32-array/subarray.js +2 -0
  2362. package/stable/float32-array/to-locale-string.js +2 -0
  2363. package/stable/float32-array/to-reversed.js +2 -0
  2364. package/stable/float32-array/to-sorted.js +2 -0
  2365. package/stable/float32-array/to-string.js +2 -0
  2366. package/stable/float32-array/values.js +5 -0
  2367. package/stable/float32-array/with.js +2 -0
  2368. package/stable/float64-array/at.js +2 -0
  2369. package/stable/float64-array/constructor.js +46 -0
  2370. package/stable/float64-array/copy-within.js +2 -0
  2371. package/stable/float64-array/entries.js +4 -0
  2372. package/stable/float64-array/every.js +2 -0
  2373. package/stable/float64-array/fill.js +2 -0
  2374. package/stable/float64-array/filter.js +2 -0
  2375. package/stable/float64-array/find-index.js +2 -0
  2376. package/stable/float64-array/find-last-index.js +2 -0
  2377. package/stable/float64-array/find-last.js +2 -0
  2378. package/stable/float64-array/find.js +2 -0
  2379. package/stable/float64-array/for-each.js +2 -0
  2380. package/stable/float64-array/from.js +42 -0
  2381. package/stable/float64-array/includes.js +2 -0
  2382. package/stable/float64-array/index-of.js +2 -0
  2383. package/stable/float64-array/index.js +48 -0
  2384. package/stable/float64-array/iterator.js +4 -0
  2385. package/stable/float64-array/join.js +2 -0
  2386. package/stable/float64-array/keys.js +4 -0
  2387. package/stable/float64-array/last-index-of.js +2 -0
  2388. package/stable/float64-array/map.js +2 -0
  2389. package/stable/float64-array/of.js +40 -0
  2390. package/stable/float64-array/reduce-right.js +2 -0
  2391. package/stable/float64-array/reduce.js +2 -0
  2392. package/stable/float64-array/reverse.js +2 -0
  2393. package/stable/float64-array/set.js +2 -0
  2394. package/stable/float64-array/slice.js +2 -0
  2395. package/stable/float64-array/some.js +2 -0
  2396. package/stable/float64-array/sort.js +2 -0
  2397. package/stable/float64-array/subarray.js +2 -0
  2398. package/stable/float64-array/to-locale-string.js +2 -0
  2399. package/stable/float64-array/to-reversed.js +2 -0
  2400. package/stable/float64-array/to-sorted.js +2 -0
  2401. package/stable/float64-array/to-string.js +2 -0
  2402. package/stable/float64-array/values.js +5 -0
  2403. package/stable/float64-array/with.js +2 -0
  2404. package/stable/function/instance/name.js +9 -0
  2405. package/stable/function/name.js +4 -0
  2406. package/stable/index.js +56 -6
  2407. package/stable/instance/at.js +2 -2
  2408. package/stable/instance/code-point-at.js +1 -1
  2409. package/stable/instance/concat.js +1 -1
  2410. package/stable/instance/copy-within.js +1 -1
  2411. package/stable/instance/ends-with.js +1 -1
  2412. package/stable/instance/entries.js +2 -2
  2413. package/stable/instance/fill.js +1 -1
  2414. package/stable/instance/filter.js +1 -1
  2415. package/stable/instance/find-index.js +1 -1
  2416. package/stable/instance/find-last-index.js +1 -1
  2417. package/stable/instance/find-last.js +1 -1
  2418. package/stable/instance/find.js +1 -1
  2419. package/stable/instance/flat-map.js +1 -1
  2420. package/stable/instance/flat.js +1 -1
  2421. package/stable/instance/for-each.js +1 -0
  2422. package/stable/instance/includes.js +2 -2
  2423. package/stable/instance/index-of.js +1 -1
  2424. package/stable/instance/is-well-formed.js +1 -1
  2425. package/stable/instance/join.js +11 -0
  2426. package/stable/instance/keys.js +2 -2
  2427. package/stable/instance/last-index-of.js +1 -1
  2428. package/stable/instance/map.js +1 -1
  2429. package/stable/instance/match-all.js +1 -1
  2430. package/stable/instance/name.js +9 -0
  2431. package/stable/instance/pad-end.js +1 -1
  2432. package/stable/instance/pad-start.js +1 -1
  2433. package/stable/instance/push.js +1 -1
  2434. package/stable/instance/reduce-right.js +1 -1
  2435. package/stable/instance/reduce.js +1 -1
  2436. package/stable/instance/repeat.js +1 -1
  2437. package/stable/instance/replace-all.js +1 -1
  2438. package/stable/instance/reverse.js +1 -1
  2439. package/stable/instance/slice.js +1 -1
  2440. package/stable/instance/sort.js +1 -1
  2441. package/stable/instance/splice.js +1 -1
  2442. package/stable/instance/starts-with.js +1 -1
  2443. package/stable/instance/to-exponential.js +12 -0
  2444. package/stable/instance/to-fixed.js +12 -0
  2445. package/stable/instance/to-reversed.js +1 -1
  2446. package/stable/instance/to-sorted.js +1 -1
  2447. package/stable/instance/to-spliced.js +1 -1
  2448. package/stable/instance/to-well-formed.js +1 -1
  2449. package/stable/instance/trim-end.js +1 -1
  2450. package/stable/instance/trim-left.js +1 -1
  2451. package/stable/instance/trim-right.js +1 -1
  2452. package/stable/instance/trim-start.js +1 -1
  2453. package/stable/instance/trim.js +1 -1
  2454. package/stable/instance/unshift.js +1 -1
  2455. package/stable/instance/values.js +4 -2
  2456. package/stable/instance/with.js +1 -1
  2457. package/stable/int16-array/at.js +2 -0
  2458. package/stable/int16-array/constructor.js +46 -0
  2459. package/stable/int16-array/copy-within.js +2 -0
  2460. package/stable/int16-array/entries.js +4 -0
  2461. package/stable/int16-array/every.js +2 -0
  2462. package/stable/int16-array/fill.js +2 -0
  2463. package/stable/int16-array/filter.js +2 -0
  2464. package/stable/int16-array/find-index.js +2 -0
  2465. package/stable/int16-array/find-last-index.js +2 -0
  2466. package/stable/int16-array/find-last.js +2 -0
  2467. package/stable/int16-array/find.js +2 -0
  2468. package/stable/int16-array/for-each.js +2 -0
  2469. package/stable/int16-array/from.js +42 -0
  2470. package/stable/int16-array/includes.js +2 -0
  2471. package/stable/int16-array/index-of.js +2 -0
  2472. package/stable/int16-array/index.js +48 -0
  2473. package/stable/int16-array/iterator.js +4 -0
  2474. package/stable/int16-array/join.js +2 -0
  2475. package/stable/int16-array/keys.js +4 -0
  2476. package/stable/int16-array/last-index-of.js +2 -0
  2477. package/stable/int16-array/map.js +2 -0
  2478. package/stable/int16-array/of.js +40 -0
  2479. package/stable/int16-array/reduce-right.js +2 -0
  2480. package/stable/int16-array/reduce.js +2 -0
  2481. package/stable/int16-array/reverse.js +2 -0
  2482. package/stable/int16-array/set.js +2 -0
  2483. package/stable/int16-array/slice.js +2 -0
  2484. package/stable/int16-array/some.js +2 -0
  2485. package/stable/int16-array/sort.js +2 -0
  2486. package/stable/int16-array/subarray.js +2 -0
  2487. package/stable/int16-array/to-locale-string.js +2 -0
  2488. package/stable/int16-array/to-reversed.js +2 -0
  2489. package/stable/int16-array/to-sorted.js +2 -0
  2490. package/stable/int16-array/to-string.js +2 -0
  2491. package/stable/int16-array/values.js +5 -0
  2492. package/stable/int16-array/with.js +2 -0
  2493. package/stable/int32-array/at.js +2 -0
  2494. package/stable/int32-array/constructor.js +46 -0
  2495. package/stable/int32-array/copy-within.js +2 -0
  2496. package/stable/int32-array/entries.js +4 -0
  2497. package/stable/int32-array/every.js +2 -0
  2498. package/stable/int32-array/fill.js +2 -0
  2499. package/stable/int32-array/filter.js +2 -0
  2500. package/stable/int32-array/find-index.js +2 -0
  2501. package/stable/int32-array/find-last-index.js +2 -0
  2502. package/stable/int32-array/find-last.js +2 -0
  2503. package/stable/int32-array/find.js +2 -0
  2504. package/stable/int32-array/for-each.js +2 -0
  2505. package/stable/int32-array/from.js +42 -0
  2506. package/stable/int32-array/includes.js +2 -0
  2507. package/stable/int32-array/index-of.js +2 -0
  2508. package/stable/int32-array/index.js +48 -0
  2509. package/stable/int32-array/iterator.js +4 -0
  2510. package/stable/int32-array/join.js +2 -0
  2511. package/stable/int32-array/keys.js +4 -0
  2512. package/stable/int32-array/last-index-of.js +2 -0
  2513. package/stable/int32-array/map.js +2 -0
  2514. package/stable/int32-array/of.js +40 -0
  2515. package/stable/int32-array/reduce-right.js +2 -0
  2516. package/stable/int32-array/reduce.js +2 -0
  2517. package/stable/int32-array/reverse.js +2 -0
  2518. package/stable/int32-array/set.js +2 -0
  2519. package/stable/int32-array/slice.js +2 -0
  2520. package/stable/int32-array/some.js +2 -0
  2521. package/stable/int32-array/sort.js +2 -0
  2522. package/stable/int32-array/subarray.js +2 -0
  2523. package/stable/int32-array/to-locale-string.js +2 -0
  2524. package/stable/int32-array/to-reversed.js +2 -0
  2525. package/stable/int32-array/to-sorted.js +2 -0
  2526. package/stable/int32-array/to-string.js +2 -0
  2527. package/stable/int32-array/values.js +5 -0
  2528. package/stable/int32-array/with.js +2 -0
  2529. package/stable/int8-array/at.js +2 -0
  2530. package/stable/int8-array/constructor.js +46 -0
  2531. package/stable/int8-array/copy-within.js +2 -0
  2532. package/stable/int8-array/entries.js +4 -0
  2533. package/stable/int8-array/every.js +2 -0
  2534. package/stable/int8-array/fill.js +2 -0
  2535. package/stable/int8-array/filter.js +2 -0
  2536. package/stable/int8-array/find-index.js +2 -0
  2537. package/stable/int8-array/find-last-index.js +2 -0
  2538. package/stable/int8-array/find-last.js +2 -0
  2539. package/stable/int8-array/find.js +2 -0
  2540. package/stable/int8-array/for-each.js +2 -0
  2541. package/stable/int8-array/from.js +42 -0
  2542. package/stable/int8-array/includes.js +2 -0
  2543. package/stable/int8-array/index-of.js +2 -0
  2544. package/stable/int8-array/index.js +48 -0
  2545. package/stable/int8-array/iterator.js +4 -0
  2546. package/stable/int8-array/join.js +2 -0
  2547. package/stable/int8-array/keys.js +4 -0
  2548. package/stable/int8-array/last-index-of.js +2 -0
  2549. package/stable/int8-array/map.js +2 -0
  2550. package/stable/int8-array/of.js +40 -0
  2551. package/stable/int8-array/reduce-right.js +2 -0
  2552. package/stable/int8-array/reduce.js +2 -0
  2553. package/stable/int8-array/reverse.js +2 -0
  2554. package/stable/int8-array/set.js +2 -0
  2555. package/stable/int8-array/slice.js +2 -0
  2556. package/stable/int8-array/some.js +2 -0
  2557. package/stable/int8-array/sort.js +2 -0
  2558. package/stable/int8-array/subarray.js +2 -0
  2559. package/stable/int8-array/to-locale-string.js +2 -0
  2560. package/stable/int8-array/to-reversed.js +2 -0
  2561. package/stable/int8-array/to-sorted.js +2 -0
  2562. package/stable/int8-array/to-string.js +2 -0
  2563. package/stable/int8-array/values.js +5 -0
  2564. package/stable/int8-array/with.js +2 -0
  2565. package/stable/iterator/concat.js +23 -0
  2566. package/stable/iterator/constructor.js +22 -0
  2567. package/stable/iterator/drop.js +8 -0
  2568. package/stable/iterator/every.js +11 -0
  2569. package/stable/iterator/filter.js +8 -0
  2570. package/stable/iterator/find.js +11 -0
  2571. package/stable/iterator/flat-map.js +11 -0
  2572. package/stable/iterator/for-each.js +11 -0
  2573. package/stable/iterator/from.js +23 -0
  2574. package/stable/iterator/index.js +24 -0
  2575. package/stable/iterator/map.js +8 -0
  2576. package/stable/iterator/prototype/drop.js +8 -0
  2577. package/stable/iterator/prototype/every.js +11 -0
  2578. package/stable/iterator/prototype/filter.js +8 -0
  2579. package/stable/iterator/prototype/find.js +11 -0
  2580. package/stable/iterator/prototype/flat-map.js +11 -0
  2581. package/stable/iterator/prototype/for-each.js +11 -0
  2582. package/stable/iterator/prototype/map.js +8 -0
  2583. package/stable/iterator/prototype/reduce.js +11 -0
  2584. package/stable/iterator/prototype/some.js +11 -0
  2585. package/stable/iterator/prototype/take.js +8 -0
  2586. package/stable/iterator/prototype/to-array.js +11 -0
  2587. package/stable/iterator/reduce.js +11 -0
  2588. package/stable/iterator/some.js +11 -0
  2589. package/stable/iterator/take.js +8 -0
  2590. package/stable/iterator/to-array.js +11 -0
  2591. package/stable/json/index.js +3 -0
  2592. package/stable/json/is-raw-json.js +6 -0
  2593. package/stable/json/parse.js +6 -0
  2594. package/stable/json/raw-json.js +6 -0
  2595. package/stable/json/stringify.js +1 -4
  2596. package/stable/map/constructor.js +2 -0
  2597. package/stable/map/get-or-insert-computed.js +11 -0
  2598. package/stable/map/get-or-insert.js +11 -0
  2599. package/stable/map/group-by.js +2 -0
  2600. package/stable/map/index.js +2 -0
  2601. package/stable/map/prototype/get-or-insert-computed.js +11 -0
  2602. package/stable/map/prototype/get-or-insert.js +11 -0
  2603. package/stable/math/f16round.js +6 -0
  2604. package/stable/math/index.js +6 -1
  2605. package/stable/math/sum-precise.js +10 -0
  2606. package/stable/number/instance/to-exponential.js +12 -0
  2607. package/stable/number/instance/to-fixed.js +12 -0
  2608. package/stable/object/create.js +3 -3
  2609. package/stable/object/define-properties.js +3 -3
  2610. package/stable/object/define-property.js +3 -3
  2611. package/stable/object/from-entries.js +2 -0
  2612. package/stable/object/get-own-property-descriptor.js +3 -3
  2613. package/stable/object/get-own-property-names.js +3 -3
  2614. package/stable/promise/all-settled.js +3 -3
  2615. package/stable/promise/all.js +3 -3
  2616. package/stable/promise/any.js +3 -3
  2617. package/stable/promise/index.js +1 -0
  2618. package/stable/promise/race.js +3 -3
  2619. package/stable/promise/reject.js +3 -3
  2620. package/stable/promise/resolve.js +3 -3
  2621. package/stable/promise/try.js +17 -0
  2622. package/stable/promise/with-resolvers.js +2 -2
  2623. package/stable/range-error/constructor.js +6 -0
  2624. package/stable/range-error/index.js +7 -0
  2625. package/stable/range-error/is-error.js +6 -0
  2626. package/stable/reference-error/constructor.js +6 -0
  2627. package/stable/reference-error/index.js +7 -0
  2628. package/stable/reference-error/is-error.js +6 -0
  2629. package/stable/regexp/escape.js +8 -0
  2630. package/stable/regexp/exec.js +2 -0
  2631. package/stable/regexp/index.js +3 -0
  2632. package/stable/regexp/instance/flags.js +11 -0
  2633. package/stable/regexp/test.js +1 -0
  2634. package/stable/set/constructor.js +7 -0
  2635. package/stable/set/difference.js +11 -0
  2636. package/stable/set/index.js +7 -0
  2637. package/stable/set/intersection.js +11 -0
  2638. package/stable/set/is-disjoint-from.js +11 -0
  2639. package/stable/set/is-subset-of.js +11 -0
  2640. package/stable/set/is-superset-of.js +11 -0
  2641. package/stable/set/prototype/difference.js +11 -0
  2642. package/stable/set/prototype/intersection.js +11 -0
  2643. package/stable/set/prototype/is-disjoint-from.js +11 -0
  2644. package/stable/set/prototype/is-subset-of.js +11 -0
  2645. package/stable/set/prototype/is-superset-of.js +11 -0
  2646. package/stable/set/prototype/symmetric-difference.js +11 -0
  2647. package/stable/set/prototype/union.js +11 -0
  2648. package/stable/set/symmetric-difference.js +11 -0
  2649. package/stable/set/union.js +11 -0
  2650. package/stable/string/index.js +2 -2
  2651. package/stable/string/instance/anchor.js +12 -0
  2652. package/stable/string/instance/at.js +12 -0
  2653. package/stable/string/instance/big.js +12 -0
  2654. package/stable/string/instance/blink.js +12 -0
  2655. package/stable/string/instance/bold.js +12 -0
  2656. package/stable/string/instance/code-point-at.js +12 -0
  2657. package/stable/string/instance/ends-with.js +12 -0
  2658. package/stable/string/instance/fixed.js +12 -0
  2659. package/stable/string/instance/fontcolor.js +12 -0
  2660. package/stable/string/instance/fontsize.js +12 -0
  2661. package/stable/string/instance/includes.js +12 -0
  2662. package/stable/string/instance/is-well-formed.js +12 -0
  2663. package/stable/string/instance/italics.js +12 -0
  2664. package/stable/string/instance/link.js +12 -0
  2665. package/stable/string/instance/match-all.js +12 -0
  2666. package/stable/string/instance/pad-end.js +12 -0
  2667. package/stable/string/instance/pad-start.js +12 -0
  2668. package/stable/string/instance/repeat.js +12 -0
  2669. package/stable/string/instance/replace-all.js +12 -0
  2670. package/stable/string/instance/small.js +12 -0
  2671. package/stable/string/instance/starts-with.js +12 -0
  2672. package/stable/string/instance/strike.js +12 -0
  2673. package/stable/string/instance/sub.js +12 -0
  2674. package/stable/string/instance/sup.js +12 -0
  2675. package/stable/string/instance/to-well-formed.js +12 -0
  2676. package/stable/string/instance/trim-end.js +12 -0
  2677. package/stable/string/instance/trim-left.js +12 -0
  2678. package/stable/string/instance/trim-right.js +12 -0
  2679. package/stable/string/instance/trim-start.js +12 -0
  2680. package/stable/string/instance/trim.js +12 -0
  2681. package/stable/string/iterator.js +1 -1
  2682. package/stable/string/match.js +0 -4
  2683. package/stable/string/prototype/iterator.js +7 -0
  2684. package/stable/string/replace.js +0 -4
  2685. package/stable/string/search.js +0 -4
  2686. package/stable/string/split.js +0 -4
  2687. package/stable/suppressed-error/constructor.js +6 -0
  2688. package/stable/suppressed-error/index.js +7 -0
  2689. package/stable/suppressed-error/is-error.js +6 -0
  2690. package/stable/symbol/async-dispose.js +12 -0
  2691. package/stable/symbol/dispose.js +7 -0
  2692. package/stable/symbol/index.js +2 -0
  2693. package/stable/syntax-error/constructor.js +6 -0
  2694. package/stable/syntax-error/index.js +7 -0
  2695. package/stable/syntax-error/is-error.js +6 -0
  2696. package/stable/type-error/constructor.js +6 -0
  2697. package/stable/type-error/index.js +7 -0
  2698. package/stable/type-error/is-error.js +6 -0
  2699. package/stable/typed-array/constructors.js +18 -0
  2700. package/stable/typed-array/from-base64.js +44 -0
  2701. package/stable/typed-array/from-hex.js +44 -0
  2702. package/stable/typed-array/from.js +42 -0
  2703. package/stable/typed-array/index.js +9 -2
  2704. package/stable/typed-array/methods.js +49 -0
  2705. package/stable/typed-array/of.js +42 -0
  2706. package/stable/typed-array/set-from-base64.js +2 -0
  2707. package/stable/typed-array/set-from-hex.js +2 -0
  2708. package/stable/typed-array/to-base64.js +2 -0
  2709. package/stable/typed-array/to-hex.js +2 -0
  2710. package/stable/uint16-array/at.js +2 -0
  2711. package/stable/uint16-array/constructor.js +46 -0
  2712. package/stable/uint16-array/copy-within.js +2 -0
  2713. package/stable/uint16-array/entries.js +4 -0
  2714. package/stable/uint16-array/every.js +2 -0
  2715. package/stable/uint16-array/fill.js +2 -0
  2716. package/stable/uint16-array/filter.js +2 -0
  2717. package/stable/uint16-array/find-index.js +2 -0
  2718. package/stable/uint16-array/find-last-index.js +2 -0
  2719. package/stable/uint16-array/find-last.js +2 -0
  2720. package/stable/uint16-array/find.js +2 -0
  2721. package/stable/uint16-array/for-each.js +2 -0
  2722. package/stable/uint16-array/from.js +42 -0
  2723. package/stable/uint16-array/includes.js +2 -0
  2724. package/stable/uint16-array/index-of.js +2 -0
  2725. package/stable/uint16-array/index.js +48 -0
  2726. package/stable/uint16-array/iterator.js +4 -0
  2727. package/stable/uint16-array/join.js +2 -0
  2728. package/stable/uint16-array/keys.js +4 -0
  2729. package/stable/uint16-array/last-index-of.js +2 -0
  2730. package/stable/uint16-array/map.js +2 -0
  2731. package/stable/uint16-array/of.js +40 -0
  2732. package/stable/uint16-array/reduce-right.js +2 -0
  2733. package/stable/uint16-array/reduce.js +2 -0
  2734. package/stable/uint16-array/reverse.js +2 -0
  2735. package/stable/uint16-array/set.js +2 -0
  2736. package/stable/uint16-array/slice.js +2 -0
  2737. package/stable/uint16-array/some.js +2 -0
  2738. package/stable/uint16-array/sort.js +2 -0
  2739. package/stable/uint16-array/subarray.js +2 -0
  2740. package/stable/uint16-array/to-locale-string.js +2 -0
  2741. package/stable/uint16-array/to-reversed.js +2 -0
  2742. package/stable/uint16-array/to-sorted.js +2 -0
  2743. package/stable/uint16-array/to-string.js +2 -0
  2744. package/stable/uint16-array/values.js +5 -0
  2745. package/stable/uint16-array/with.js +2 -0
  2746. package/stable/uint32-array/at.js +2 -0
  2747. package/stable/uint32-array/constructor.js +46 -0
  2748. package/stable/uint32-array/copy-within.js +2 -0
  2749. package/stable/uint32-array/entries.js +4 -0
  2750. package/stable/uint32-array/every.js +2 -0
  2751. package/stable/uint32-array/fill.js +2 -0
  2752. package/stable/uint32-array/filter.js +2 -0
  2753. package/stable/uint32-array/find-index.js +2 -0
  2754. package/stable/uint32-array/find-last-index.js +2 -0
  2755. package/stable/uint32-array/find-last.js +2 -0
  2756. package/stable/uint32-array/find.js +2 -0
  2757. package/stable/uint32-array/for-each.js +2 -0
  2758. package/stable/uint32-array/from.js +42 -0
  2759. package/stable/uint32-array/includes.js +2 -0
  2760. package/stable/uint32-array/index-of.js +2 -0
  2761. package/stable/uint32-array/index.js +48 -0
  2762. package/stable/uint32-array/iterator.js +4 -0
  2763. package/stable/uint32-array/join.js +2 -0
  2764. package/stable/uint32-array/keys.js +4 -0
  2765. package/stable/uint32-array/last-index-of.js +2 -0
  2766. package/stable/uint32-array/map.js +2 -0
  2767. package/stable/uint32-array/of.js +40 -0
  2768. package/stable/uint32-array/reduce-right.js +2 -0
  2769. package/stable/uint32-array/reduce.js +2 -0
  2770. package/stable/uint32-array/reverse.js +2 -0
  2771. package/stable/uint32-array/set.js +2 -0
  2772. package/stable/uint32-array/slice.js +2 -0
  2773. package/stable/uint32-array/some.js +2 -0
  2774. package/stable/uint32-array/sort.js +2 -0
  2775. package/stable/uint32-array/subarray.js +2 -0
  2776. package/stable/uint32-array/to-locale-string.js +2 -0
  2777. package/stable/uint32-array/to-reversed.js +2 -0
  2778. package/stable/uint32-array/to-sorted.js +2 -0
  2779. package/stable/uint32-array/to-string.js +2 -0
  2780. package/stable/uint32-array/values.js +5 -0
  2781. package/stable/uint32-array/with.js +2 -0
  2782. package/stable/uint8-array/at.js +2 -0
  2783. package/stable/uint8-array/constructor.js +50 -0
  2784. package/stable/uint8-array/copy-within.js +2 -0
  2785. package/stable/uint8-array/entries.js +4 -0
  2786. package/stable/uint8-array/every.js +2 -0
  2787. package/stable/uint8-array/fill.js +2 -0
  2788. package/stable/uint8-array/filter.js +2 -0
  2789. package/stable/uint8-array/find-index.js +2 -0
  2790. package/stable/uint8-array/find-last-index.js +2 -0
  2791. package/stable/uint8-array/find-last.js +2 -0
  2792. package/stable/uint8-array/find.js +2 -0
  2793. package/stable/uint8-array/for-each.js +2 -0
  2794. package/stable/uint8-array/from-base64.js +44 -0
  2795. package/stable/uint8-array/from-hex.js +44 -0
  2796. package/stable/uint8-array/from.js +46 -0
  2797. package/stable/uint8-array/includes.js +2 -0
  2798. package/stable/uint8-array/index-of.js +2 -0
  2799. package/stable/uint8-array/index.js +54 -0
  2800. package/stable/uint8-array/iterator.js +4 -0
  2801. package/stable/uint8-array/join.js +2 -0
  2802. package/stable/uint8-array/keys.js +4 -0
  2803. package/stable/uint8-array/last-index-of.js +2 -0
  2804. package/stable/uint8-array/map.js +2 -0
  2805. package/stable/uint8-array/of.js +44 -0
  2806. package/stable/uint8-array/reduce-right.js +2 -0
  2807. package/stable/uint8-array/reduce.js +2 -0
  2808. package/stable/uint8-array/reverse.js +2 -0
  2809. package/stable/uint8-array/set-from-base64.js +2 -0
  2810. package/stable/uint8-array/set-from-hex.js +2 -0
  2811. package/stable/uint8-array/set.js +2 -0
  2812. package/stable/uint8-array/slice.js +2 -0
  2813. package/stable/uint8-array/some.js +2 -0
  2814. package/stable/uint8-array/sort.js +2 -0
  2815. package/stable/uint8-array/subarray.js +2 -0
  2816. package/stable/uint8-array/to-base64.js +2 -0
  2817. package/stable/uint8-array/to-hex.js +2 -0
  2818. package/stable/uint8-array/to-locale-string.js +2 -0
  2819. package/stable/uint8-array/to-reversed.js +2 -0
  2820. package/stable/uint8-array/to-sorted.js +2 -0
  2821. package/stable/uint8-array/to-string.js +2 -0
  2822. package/stable/uint8-array/values.js +5 -0
  2823. package/stable/uint8-array/with.js +2 -0
  2824. package/stable/uint8-clamped-array/at.js +2 -0
  2825. package/stable/uint8-clamped-array/constructor.js +46 -0
  2826. package/stable/uint8-clamped-array/copy-within.js +2 -0
  2827. package/stable/uint8-clamped-array/entries.js +4 -0
  2828. package/stable/uint8-clamped-array/every.js +2 -0
  2829. package/stable/uint8-clamped-array/fill.js +2 -0
  2830. package/stable/uint8-clamped-array/filter.js +2 -0
  2831. package/stable/uint8-clamped-array/find-index.js +2 -0
  2832. package/stable/uint8-clamped-array/find-last-index.js +2 -0
  2833. package/stable/uint8-clamped-array/find-last.js +2 -0
  2834. package/stable/uint8-clamped-array/find.js +2 -0
  2835. package/stable/uint8-clamped-array/for-each.js +2 -0
  2836. package/stable/uint8-clamped-array/from.js +42 -0
  2837. package/stable/uint8-clamped-array/includes.js +2 -0
  2838. package/stable/uint8-clamped-array/index-of.js +2 -0
  2839. package/stable/uint8-clamped-array/index.js +48 -0
  2840. package/stable/uint8-clamped-array/iterator.js +4 -0
  2841. package/stable/uint8-clamped-array/join.js +2 -0
  2842. package/stable/uint8-clamped-array/keys.js +4 -0
  2843. package/stable/uint8-clamped-array/last-index-of.js +2 -0
  2844. package/stable/uint8-clamped-array/map.js +2 -0
  2845. package/stable/uint8-clamped-array/of.js +40 -0
  2846. package/stable/uint8-clamped-array/reduce-right.js +2 -0
  2847. package/stable/uint8-clamped-array/reduce.js +2 -0
  2848. package/stable/uint8-clamped-array/reverse.js +2 -0
  2849. package/stable/uint8-clamped-array/set.js +2 -0
  2850. package/stable/uint8-clamped-array/slice.js +2 -0
  2851. package/stable/uint8-clamped-array/some.js +2 -0
  2852. package/stable/uint8-clamped-array/sort.js +2 -0
  2853. package/stable/uint8-clamped-array/subarray.js +2 -0
  2854. package/stable/uint8-clamped-array/to-locale-string.js +2 -0
  2855. package/stable/uint8-clamped-array/to-reversed.js +2 -0
  2856. package/stable/uint8-clamped-array/to-sorted.js +2 -0
  2857. package/stable/uint8-clamped-array/to-string.js +2 -0
  2858. package/stable/uint8-clamped-array/values.js +5 -0
  2859. package/stable/uint8-clamped-array/with.js +2 -0
  2860. package/stable/uri-error/constructor.js +6 -0
  2861. package/stable/uri-error/index.js +7 -0
  2862. package/stable/uri-error/is-error.js +6 -0
  2863. package/stable/url/can-parse.js +2 -0
  2864. package/stable/url/constructor.js +18 -0
  2865. package/stable/url/index.js +3 -0
  2866. package/stable/url/parse.js +15 -0
  2867. package/stable/url/to-json.js +2 -4
  2868. package/stable/url-search-params/constructor.js +14 -0
  2869. package/stable/url-search-params/index.js +3 -0
  2870. package/stable/weak-map/constructor.js +3 -0
  2871. package/stable/weak-map/get-or-insert-computed.js +11 -0
  2872. package/stable/weak-map/get-or-insert.js +11 -0
  2873. package/stable/weak-map/index.js +3 -0
  2874. package/stable/weak-map/prototype/get-or-insert-computed.js +11 -0
  2875. package/stable/weak-map/prototype/get-or-insert.js +11 -0
  2876. package/stable/weak-set/constructor.js +1 -0
  2877. package/stable/weak-set/index.js +1 -0
  2878. package/stage/0.js +66 -49
  2879. package/stage/1.js +66 -49
  2880. package/stage/2.7.js +318 -0
  2881. package/stage/2.js +65 -48
  2882. package/stage/3.js +57 -44
  2883. package/actual/array/virtual/iterator.js +0 -7
  2884. package/actual/array/virtual/values.js +0 -8
  2885. package/actual/async-iterator/constructor.js +0 -11
  2886. package/actual/async-iterator/from.js +0 -11
  2887. package/actual/iterator/virtual/drop.js +0 -8
  2888. package/actual/iterator/virtual/every.js +0 -8
  2889. package/actual/iterator/virtual/filter.js +0 -8
  2890. package/actual/iterator/virtual/find.js +0 -8
  2891. package/actual/iterator/virtual/flat-map.js +0 -11
  2892. package/actual/iterator/virtual/for-each.js +0 -8
  2893. package/actual/iterator/virtual/map.js +0 -8
  2894. package/actual/iterator/virtual/reduce.js +0 -8
  2895. package/actual/iterator/virtual/some.js +0 -8
  2896. package/actual/iterator/virtual/take.js +0 -8
  2897. package/actual/iterator/virtual/to-array.js +0 -8
  2898. package/actual/set/virtual/difference.js +0 -11
  2899. package/actual/set/virtual/intersection.js +0 -11
  2900. package/actual/set/virtual/is-disjoint-from.js +0 -11
  2901. package/actual/set/virtual/is-subset-of.js +0 -11
  2902. package/actual/set/virtual/is-superset-of.js +0 -11
  2903. package/actual/set/virtual/symmetric-difference.js +0 -11
  2904. package/actual/set/virtual/union.js +0 -11
  2905. package/actual/string/virtual/iterator.js +0 -7
  2906. package/actual/string/virtual/match.js +0 -7
  2907. package/actual/string/virtual/replace.js +0 -7
  2908. package/actual/string/virtual/search.js +0 -7
  2909. package/actual/string/virtual/split.js +0 -7
  2910. package/actual/typed-array/float32-array.js +0 -47
  2911. package/actual/typed-array/float64-array.js +0 -47
  2912. package/actual/typed-array/int16-array.js +0 -47
  2913. package/actual/typed-array/int32-array.js +0 -47
  2914. package/actual/typed-array/int8-array.js +0 -47
  2915. package/actual/typed-array/uint16-array.js +0 -47
  2916. package/actual/typed-array/uint32-array.js +0 -47
  2917. package/actual/typed-array/uint8-array.js +0 -45
  2918. package/actual/typed-array/uint8-clamped-array.js +0 -47
  2919. package/actual/url/virtual/to-json.js +0 -13
  2920. package/es/array/virtual/iterator.js +0 -7
  2921. package/es/array/virtual/values.js +0 -8
  2922. package/es/string/virtual/iterator.js +0 -7
  2923. package/es/string/virtual/match.js +0 -7
  2924. package/es/string/virtual/replace.js +0 -7
  2925. package/es/string/virtual/search.js +0 -7
  2926. package/es/string/virtual/split.js +0 -7
  2927. package/es/typed-array/float32-array.js +0 -45
  2928. package/es/typed-array/float64-array.js +0 -45
  2929. package/es/typed-array/int16-array.js +0 -45
  2930. package/es/typed-array/int32-array.js +0 -45
  2931. package/es/typed-array/int8-array.js +0 -45
  2932. package/es/typed-array/uint16-array.js +0 -45
  2933. package/es/typed-array/uint32-array.js +0 -45
  2934. package/es/typed-array/uint8-array.js +0 -43
  2935. package/es/typed-array/uint8-clamped-array.js +0 -45
  2936. package/full/array/virtual/iterator.js +0 -7
  2937. package/full/array/virtual/values.js +0 -8
  2938. package/full/iterator/virtual/drop.js +0 -8
  2939. package/full/iterator/virtual/every.js +0 -8
  2940. package/full/iterator/virtual/filter.js +0 -8
  2941. package/full/iterator/virtual/find.js +0 -8
  2942. package/full/iterator/virtual/flat-map.js +0 -11
  2943. package/full/iterator/virtual/for-each.js +0 -8
  2944. package/full/iterator/virtual/map.js +0 -8
  2945. package/full/iterator/virtual/reduce.js +0 -8
  2946. package/full/iterator/virtual/some.js +0 -8
  2947. package/full/iterator/virtual/take.js +0 -8
  2948. package/full/iterator/virtual/to-array.js +0 -8
  2949. package/full/iterator/virtual/to-async.js +0 -13
  2950. package/full/map/emplace.js +0 -11
  2951. package/full/map/virtual/emplace.js +0 -11
  2952. package/full/set/virtual/difference.js +0 -11
  2953. package/full/set/virtual/intersection.js +0 -11
  2954. package/full/set/virtual/is-disjoint-from.js +0 -11
  2955. package/full/set/virtual/is-subset-of.js +0 -11
  2956. package/full/set/virtual/is-superset-of.js +0 -11
  2957. package/full/set/virtual/symmetric-difference.js +0 -11
  2958. package/full/set/virtual/union.js +0 -11
  2959. package/full/string/virtual/iterator.js +0 -7
  2960. package/full/string/virtual/match.js +0 -7
  2961. package/full/string/virtual/replace.js +0 -7
  2962. package/full/string/virtual/search.js +0 -7
  2963. package/full/string/virtual/split.js +0 -7
  2964. package/full/symbol/matcher.js +0 -6
  2965. package/full/typed-array/float32-array.js +0 -51
  2966. package/full/typed-array/float64-array.js +0 -51
  2967. package/full/typed-array/int16-array.js +0 -51
  2968. package/full/typed-array/int32-array.js +0 -51
  2969. package/full/typed-array/int8-array.js +0 -51
  2970. package/full/typed-array/uint16-array.js +0 -51
  2971. package/full/typed-array/uint32-array.js +0 -51
  2972. package/full/typed-array/uint8-array.js +0 -49
  2973. package/full/typed-array/uint8-clamped-array.js +0 -51
  2974. package/full/url/virtual/to-json.js +0 -13
  2975. package/full/weak-map/emplace.js +0 -10
  2976. package/full/weak-map/virtual/emplace.js +0 -10
  2977. package/internals/a-map.js +0 -8
  2978. package/internals/array-to-reversed.js +0 -12
  2979. package/internals/array-with.js +0 -18
  2980. package/internals/engine-ff-version.js +0 -6
  2981. package/internals/engine-is-browser.js +0 -7
  2982. package/internals/engine-is-bun.js +0 -3
  2983. package/internals/engine-is-deno.js +0 -3
  2984. package/internals/engine-is-ie-or-edge.js +0 -4
  2985. package/internals/engine-is-ios-pebble.js +0 -4
  2986. package/internals/engine-is-ios.js +0 -5
  2987. package/internals/engine-is-node.js +0 -5
  2988. package/internals/engine-is-webos-webkit.js +0 -4
  2989. package/internals/engine-user-agent.js +0 -2
  2990. package/internals/engine-v8-version.js +0 -28
  2991. package/internals/engine-webkit-version.js +0 -6
  2992. package/internals/get-json-replacer-function.js +0 -30
  2993. package/internals/ieee754.js +0 -103
  2994. package/internals/math-f16round.js +0 -30
  2995. package/internals/try-node-require.js +0 -9
  2996. package/internals/typed-array-from-species-and-list.js +0 -7
  2997. package/internals/typed-array-species-constructor.js +0 -10
  2998. package/modules/esnext.array.from-async.js +0 -60
  2999. package/modules/esnext.async-disposable-stack.constructor.js +0 -133
  3000. package/modules/esnext.async-iterator.async-dispose.js +0 -30
  3001. package/modules/esnext.data-view.get-float16.js +0 -15
  3002. package/modules/esnext.data-view.set-float16.js +0 -20
  3003. package/modules/esnext.disposable-stack.constructor.js +0 -112
  3004. package/modules/esnext.iterator.constructor.js +0 -65
  3005. package/modules/esnext.iterator.dispose.js +0 -17
  3006. package/modules/esnext.iterator.drop.js +0 -37
  3007. package/modules/esnext.iterator.every.js +0 -21
  3008. package/modules/esnext.iterator.filter.js +0 -36
  3009. package/modules/esnext.iterator.find.js +0 -21
  3010. package/modules/esnext.iterator.flat-map.js +0 -46
  3011. package/modules/esnext.iterator.for-each.js +0 -21
  3012. package/modules/esnext.iterator.from.js +0 -25
  3013. package/modules/esnext.iterator.map.js +0 -29
  3014. package/modules/esnext.iterator.reduce.js +0 -33
  3015. package/modules/esnext.iterator.some.js +0 -21
  3016. package/modules/esnext.iterator.take.js +0 -34
  3017. package/modules/esnext.iterator.to-array.js +0 -18
  3018. package/modules/esnext.json.is-raw-json.js +0 -11
  3019. package/modules/esnext.json.parse.js +0 -244
  3020. package/modules/esnext.json.raw-json.js +0 -82
  3021. package/modules/esnext.map.emplace.js +0 -27
  3022. package/modules/esnext.math.f16round.js +0 -7
  3023. package/modules/esnext.promise.try.js +0 -18
  3024. package/modules/esnext.regexp.escape.js +0 -20
  3025. package/modules/esnext.set.difference.js +0 -30
  3026. package/modules/esnext.set.intersection.js +0 -41
  3027. package/modules/esnext.set.is-disjoint-from.js +0 -26
  3028. package/modules/esnext.set.is-subset-of.js +0 -20
  3029. package/modules/esnext.set.is-superset-of.js +0 -23
  3030. package/modules/esnext.set.symmetric-difference.js +0 -27
  3031. package/modules/esnext.set.union.js +0 -22
  3032. package/modules/esnext.suppressed-error.constructor.js +0 -35
  3033. package/modules/esnext.symbol.async-dispose.js +0 -19
  3034. package/modules/esnext.symbol.dispose.js +0 -19
  3035. package/modules/esnext.symbol.matcher.js +0 -6
  3036. package/modules/esnext.uint8-array.from-base64.js +0 -72
  3037. package/modules/esnext.uint8-array.from-hex.js +0 -27
  3038. package/modules/esnext.uint8-array.to-base64.js +0 -42
  3039. package/modules/esnext.uint8-array.to-hex.js +0 -20
  3040. package/modules/esnext.weak-map.emplace.js +0 -27
  3041. package/postinstall.js +0 -62
  3042. package/proposals/map-emplace.js +0 -9
  3043. package/stable/array/virtual/iterator.js +0 -7
  3044. package/stable/array/virtual/values.js +0 -8
  3045. package/stable/string/virtual/iterator.js +0 -7
  3046. package/stable/string/virtual/match.js +0 -7
  3047. package/stable/string/virtual/replace.js +0 -7
  3048. package/stable/string/virtual/search.js +0 -7
  3049. package/stable/string/virtual/split.js +0 -7
  3050. package/stable/typed-array/float32-array.js +0 -45
  3051. package/stable/typed-array/float64-array.js +0 -45
  3052. package/stable/typed-array/int16-array.js +0 -45
  3053. package/stable/typed-array/int32-array.js +0 -45
  3054. package/stable/typed-array/int8-array.js +0 -45
  3055. package/stable/typed-array/uint16-array.js +0 -45
  3056. package/stable/typed-array/uint32-array.js +0 -45
  3057. package/stable/typed-array/uint8-array.js +0 -43
  3058. package/stable/typed-array/uint8-clamped-array.js +0 -45
  3059. package/stable/url/virtual/to-json.js +0 -13
  3060. /package/actual/array/{virtual → prototype}/at.js +0 -0
  3061. /package/actual/array/{virtual → prototype}/concat.js +0 -0
  3062. /package/actual/array/{virtual → prototype}/copy-within.js +0 -0
  3063. /package/actual/array/{virtual → prototype}/entries.js +0 -0
  3064. /package/actual/array/{virtual → prototype}/fill.js +0 -0
  3065. /package/actual/array/{virtual → prototype}/filter.js +0 -0
  3066. /package/actual/array/{virtual → prototype}/find-index.js +0 -0
  3067. /package/actual/array/{virtual → prototype}/find-last-index.js +0 -0
  3068. /package/actual/array/{virtual → prototype}/find-last.js +0 -0
  3069. /package/actual/array/{virtual → prototype}/find.js +0 -0
  3070. /package/actual/array/{virtual → prototype}/flat-map.js +0 -0
  3071. /package/actual/array/{virtual → prototype}/flat.js +0 -0
  3072. /package/actual/array/{virtual → prototype}/includes.js +0 -0
  3073. /package/actual/array/{virtual → prototype}/index-of.js +0 -0
  3074. /package/actual/array/{virtual → prototype}/join.js +0 -0
  3075. /package/actual/array/{virtual → prototype}/keys.js +0 -0
  3076. /package/actual/array/{virtual → prototype}/last-index-of.js +0 -0
  3077. /package/actual/array/{virtual → prototype}/map.js +0 -0
  3078. /package/actual/array/{virtual → prototype}/push.js +0 -0
  3079. /package/actual/array/{virtual → prototype}/reduce-right.js +0 -0
  3080. /package/actual/array/{virtual → prototype}/reduce.js +0 -0
  3081. /package/actual/array/{virtual → prototype}/reverse.js +0 -0
  3082. /package/actual/array/{virtual → prototype}/slice.js +0 -0
  3083. /package/actual/array/{virtual → prototype}/sort.js +0 -0
  3084. /package/actual/array/{virtual → prototype}/splice.js +0 -0
  3085. /package/actual/array/{virtual → prototype}/to-reversed.js +0 -0
  3086. /package/actual/array/{virtual → prototype}/to-sorted.js +0 -0
  3087. /package/actual/array/{virtual → prototype}/to-spliced.js +0 -0
  3088. /package/actual/array/{virtual → prototype}/unshift.js +0 -0
  3089. /package/actual/array/{virtual → prototype}/with.js +0 -0
  3090. /package/actual/date/{virtual → prototype}/to-json.js +0 -0
  3091. /package/actual/number/{virtual → prototype}/to-exponential.js +0 -0
  3092. /package/actual/number/{virtual → prototype}/to-fixed.js +0 -0
  3093. /package/actual/object/{virtual → prototype}/define-getter.js +0 -0
  3094. /package/actual/object/{virtual → prototype}/define-setter.js +0 -0
  3095. /package/actual/object/{virtual → prototype}/lookup-getter.js +0 -0
  3096. /package/actual/object/{virtual → prototype}/lookup-setter.js +0 -0
  3097. /package/actual/object/{virtual → prototype}/to-string.js +0 -0
  3098. /package/actual/promise/{virtual → prototype}/catch.js +0 -0
  3099. /package/actual/promise/{virtual → prototype}/finally.js +0 -0
  3100. /package/actual/string/{virtual → prototype}/anchor.js +0 -0
  3101. /package/actual/string/{virtual → prototype}/at.js +0 -0
  3102. /package/actual/string/{virtual → prototype}/big.js +0 -0
  3103. /package/actual/string/{virtual → prototype}/blink.js +0 -0
  3104. /package/actual/string/{virtual → prototype}/bold.js +0 -0
  3105. /package/actual/string/{virtual → prototype}/code-point-at.js +0 -0
  3106. /package/actual/string/{virtual → prototype}/ends-with.js +0 -0
  3107. /package/actual/string/{virtual → prototype}/fixed.js +0 -0
  3108. /package/actual/string/{virtual → prototype}/fontcolor.js +0 -0
  3109. /package/actual/string/{virtual → prototype}/fontsize.js +0 -0
  3110. /package/actual/string/{virtual → prototype}/includes.js +0 -0
  3111. /package/actual/string/{virtual → prototype}/is-well-formed.js +0 -0
  3112. /package/actual/string/{virtual → prototype}/italics.js +0 -0
  3113. /package/actual/string/{virtual → prototype}/link.js +0 -0
  3114. /package/actual/string/{virtual → prototype}/match-all.js +0 -0
  3115. /package/actual/string/{virtual → prototype}/pad-end.js +0 -0
  3116. /package/actual/string/{virtual → prototype}/pad-start.js +0 -0
  3117. /package/actual/string/{virtual → prototype}/repeat.js +0 -0
  3118. /package/actual/string/{virtual → prototype}/replace-all.js +0 -0
  3119. /package/actual/string/{virtual → prototype}/small.js +0 -0
  3120. /package/actual/string/{virtual → prototype}/starts-with.js +0 -0
  3121. /package/actual/string/{virtual → prototype}/strike.js +0 -0
  3122. /package/actual/string/{virtual → prototype}/sub.js +0 -0
  3123. /package/actual/string/{virtual → prototype}/sup.js +0 -0
  3124. /package/actual/string/{virtual → prototype}/to-well-formed.js +0 -0
  3125. /package/actual/string/{virtual → prototype}/trim-end.js +0 -0
  3126. /package/actual/string/{virtual → prototype}/trim-left.js +0 -0
  3127. /package/actual/string/{virtual → prototype}/trim-right.js +0 -0
  3128. /package/actual/string/{virtual → prototype}/trim-start.js +0 -0
  3129. /package/actual/string/{virtual → prototype}/trim.js +0 -0
  3130. /package/es/array/{virtual → prototype}/at.js +0 -0
  3131. /package/es/array/{virtual → prototype}/concat.js +0 -0
  3132. /package/es/array/{virtual → prototype}/copy-within.js +0 -0
  3133. /package/es/array/{virtual → prototype}/entries.js +0 -0
  3134. /package/es/array/{virtual → prototype}/fill.js +0 -0
  3135. /package/es/array/{virtual → prototype}/filter.js +0 -0
  3136. /package/es/array/{virtual → prototype}/find-index.js +0 -0
  3137. /package/es/array/{virtual → prototype}/find-last-index.js +0 -0
  3138. /package/es/array/{virtual → prototype}/find-last.js +0 -0
  3139. /package/es/array/{virtual → prototype}/find.js +0 -0
  3140. /package/es/array/{virtual → prototype}/flat-map.js +0 -0
  3141. /package/es/array/{virtual → prototype}/flat.js +0 -0
  3142. /package/es/array/{virtual → prototype}/includes.js +0 -0
  3143. /package/es/array/{virtual → prototype}/index-of.js +0 -0
  3144. /package/es/array/{virtual → prototype}/join.js +0 -0
  3145. /package/es/array/{virtual → prototype}/keys.js +0 -0
  3146. /package/es/array/{virtual → prototype}/last-index-of.js +0 -0
  3147. /package/es/array/{virtual → prototype}/map.js +0 -0
  3148. /package/es/array/{virtual → prototype}/push.js +0 -0
  3149. /package/es/array/{virtual → prototype}/reduce-right.js +0 -0
  3150. /package/es/array/{virtual → prototype}/reduce.js +0 -0
  3151. /package/es/array/{virtual → prototype}/reverse.js +0 -0
  3152. /package/es/array/{virtual → prototype}/slice.js +0 -0
  3153. /package/es/array/{virtual → prototype}/sort.js +0 -0
  3154. /package/es/array/{virtual → prototype}/splice.js +0 -0
  3155. /package/es/array/{virtual → prototype}/to-reversed.js +0 -0
  3156. /package/es/array/{virtual → prototype}/to-sorted.js +0 -0
  3157. /package/es/array/{virtual → prototype}/to-spliced.js +0 -0
  3158. /package/es/array/{virtual → prototype}/unshift.js +0 -0
  3159. /package/es/array/{virtual → prototype}/with.js +0 -0
  3160. /package/es/date/{virtual → prototype}/to-json.js +0 -0
  3161. /package/es/number/{virtual → prototype}/to-exponential.js +0 -0
  3162. /package/es/number/{virtual → prototype}/to-fixed.js +0 -0
  3163. /package/es/object/{virtual → prototype}/define-getter.js +0 -0
  3164. /package/es/object/{virtual → prototype}/define-setter.js +0 -0
  3165. /package/es/object/{virtual → prototype}/lookup-getter.js +0 -0
  3166. /package/es/object/{virtual → prototype}/lookup-setter.js +0 -0
  3167. /package/es/object/{virtual → prototype}/to-string.js +0 -0
  3168. /package/es/promise/{virtual → prototype}/catch.js +0 -0
  3169. /package/es/promise/{virtual → prototype}/finally.js +0 -0
  3170. /package/es/string/{virtual → prototype}/anchor.js +0 -0
  3171. /package/es/string/{virtual → prototype}/at.js +0 -0
  3172. /package/es/string/{virtual → prototype}/big.js +0 -0
  3173. /package/es/string/{virtual → prototype}/blink.js +0 -0
  3174. /package/es/string/{virtual → prototype}/bold.js +0 -0
  3175. /package/es/string/{virtual → prototype}/code-point-at.js +0 -0
  3176. /package/es/string/{virtual → prototype}/ends-with.js +0 -0
  3177. /package/es/string/{virtual → prototype}/fixed.js +0 -0
  3178. /package/es/string/{virtual → prototype}/fontcolor.js +0 -0
  3179. /package/es/string/{virtual → prototype}/fontsize.js +0 -0
  3180. /package/es/string/{virtual → prototype}/includes.js +0 -0
  3181. /package/es/string/{virtual → prototype}/is-well-formed.js +0 -0
  3182. /package/es/string/{virtual → prototype}/italics.js +0 -0
  3183. /package/es/string/{virtual → prototype}/link.js +0 -0
  3184. /package/es/string/{virtual → prototype}/match-all.js +0 -0
  3185. /package/es/string/{virtual → prototype}/pad-end.js +0 -0
  3186. /package/es/string/{virtual → prototype}/pad-start.js +0 -0
  3187. /package/es/string/{virtual → prototype}/repeat.js +0 -0
  3188. /package/es/string/{virtual → prototype}/replace-all.js +0 -0
  3189. /package/es/string/{virtual → prototype}/small.js +0 -0
  3190. /package/es/string/{virtual → prototype}/starts-with.js +0 -0
  3191. /package/es/string/{virtual → prototype}/strike.js +0 -0
  3192. /package/es/string/{virtual → prototype}/sub.js +0 -0
  3193. /package/es/string/{virtual → prototype}/sup.js +0 -0
  3194. /package/es/string/{virtual → prototype}/to-well-formed.js +0 -0
  3195. /package/es/string/{virtual → prototype}/trim-end.js +0 -0
  3196. /package/es/string/{virtual → prototype}/trim-left.js +0 -0
  3197. /package/es/string/{virtual → prototype}/trim-right.js +0 -0
  3198. /package/es/string/{virtual → prototype}/trim-start.js +0 -0
  3199. /package/es/string/{virtual → prototype}/trim.js +0 -0
  3200. /package/full/array/{virtual → prototype}/at.js +0 -0
  3201. /package/full/array/{virtual → prototype}/concat.js +0 -0
  3202. /package/full/array/{virtual → prototype}/copy-within.js +0 -0
  3203. /package/full/array/{virtual → prototype}/entries.js +0 -0
  3204. /package/full/array/{virtual → prototype}/fill.js +0 -0
  3205. /package/full/array/{virtual → prototype}/filter-reject.js +0 -0
  3206. /package/full/array/{virtual → prototype}/filter.js +0 -0
  3207. /package/full/array/{virtual → prototype}/find-index.js +0 -0
  3208. /package/full/array/{virtual → prototype}/find-last-index.js +0 -0
  3209. /package/full/array/{virtual → prototype}/find-last.js +0 -0
  3210. /package/full/array/{virtual → prototype}/find.js +0 -0
  3211. /package/full/array/{virtual → prototype}/flat-map.js +0 -0
  3212. /package/full/array/{virtual → prototype}/flat.js +0 -0
  3213. /package/full/array/{virtual → prototype}/includes.js +0 -0
  3214. /package/full/array/{virtual → prototype}/index-of.js +0 -0
  3215. /package/full/array/{virtual → prototype}/join.js +0 -0
  3216. /package/full/array/{virtual → prototype}/keys.js +0 -0
  3217. /package/full/array/{virtual → prototype}/last-index-of.js +0 -0
  3218. /package/full/array/{virtual → prototype}/map.js +0 -0
  3219. /package/full/array/{virtual → prototype}/push.js +0 -0
  3220. /package/full/array/{virtual → prototype}/reduce-right.js +0 -0
  3221. /package/full/array/{virtual → prototype}/reduce.js +0 -0
  3222. /package/full/array/{virtual → prototype}/reverse.js +0 -0
  3223. /package/full/array/{virtual → prototype}/slice.js +0 -0
  3224. /package/full/array/{virtual → prototype}/sort.js +0 -0
  3225. /package/full/array/{virtual → prototype}/splice.js +0 -0
  3226. /package/full/array/{virtual → prototype}/to-reversed.js +0 -0
  3227. /package/full/array/{virtual → prototype}/to-sorted.js +0 -0
  3228. /package/full/array/{virtual → prototype}/to-spliced.js +0 -0
  3229. /package/full/array/{virtual → prototype}/unique-by.js +0 -0
  3230. /package/full/array/{virtual → prototype}/unshift.js +0 -0
  3231. /package/full/array/{virtual → prototype}/with.js +0 -0
  3232. /package/full/async-iterator/{virtual → prototype}/drop.js +0 -0
  3233. /package/full/async-iterator/{virtual → prototype}/every.js +0 -0
  3234. /package/full/async-iterator/{virtual → prototype}/filter.js +0 -0
  3235. /package/full/async-iterator/{virtual → prototype}/find.js +0 -0
  3236. /package/full/async-iterator/{virtual → prototype}/flat-map.js +0 -0
  3237. /package/full/async-iterator/{virtual → prototype}/for-each.js +0 -0
  3238. /package/full/async-iterator/{virtual → prototype}/map.js +0 -0
  3239. /package/full/async-iterator/{virtual → prototype}/reduce.js +0 -0
  3240. /package/full/async-iterator/{virtual → prototype}/some.js +0 -0
  3241. /package/full/async-iterator/{virtual → prototype}/take.js +0 -0
  3242. /package/full/async-iterator/{virtual → prototype}/to-array.js +0 -0
  3243. /package/full/date/{virtual → prototype}/to-json.js +0 -0
  3244. /package/full/function/{virtual → prototype}/demethodize.js +0 -0
  3245. /package/full/number/{virtual → prototype}/to-exponential.js +0 -0
  3246. /package/full/number/{virtual → prototype}/to-fixed.js +0 -0
  3247. /package/full/object/{virtual → prototype}/define-getter.js +0 -0
  3248. /package/full/object/{virtual → prototype}/define-setter.js +0 -0
  3249. /package/full/object/{virtual → prototype}/lookup-getter.js +0 -0
  3250. /package/full/object/{virtual → prototype}/lookup-setter.js +0 -0
  3251. /package/full/object/{virtual → prototype}/to-string.js +0 -0
  3252. /package/full/promise/{virtual → prototype}/catch.js +0 -0
  3253. /package/full/promise/{virtual → prototype}/finally.js +0 -0
  3254. /package/full/string/{virtual → prototype}/anchor.js +0 -0
  3255. /package/full/string/{virtual → prototype}/at.js +0 -0
  3256. /package/full/string/{virtual → prototype}/big.js +0 -0
  3257. /package/full/string/{virtual → prototype}/blink.js +0 -0
  3258. /package/full/string/{virtual → prototype}/bold.js +0 -0
  3259. /package/full/string/{virtual → prototype}/code-point-at.js +0 -0
  3260. /package/full/string/{virtual → prototype}/ends-with.js +0 -0
  3261. /package/full/string/{virtual → prototype}/fixed.js +0 -0
  3262. /package/full/string/{virtual → prototype}/fontcolor.js +0 -0
  3263. /package/full/string/{virtual → prototype}/fontsize.js +0 -0
  3264. /package/full/string/{virtual → prototype}/includes.js +0 -0
  3265. /package/full/string/{virtual → prototype}/is-well-formed.js +0 -0
  3266. /package/full/string/{virtual → prototype}/italics.js +0 -0
  3267. /package/full/string/{virtual → prototype}/link.js +0 -0
  3268. /package/full/string/{virtual → prototype}/match-all.js +0 -0
  3269. /package/full/string/{virtual → prototype}/pad-end.js +0 -0
  3270. /package/full/string/{virtual → prototype}/pad-start.js +0 -0
  3271. /package/full/string/{virtual → prototype}/repeat.js +0 -0
  3272. /package/full/string/{virtual → prototype}/replace-all.js +0 -0
  3273. /package/full/string/{virtual → prototype}/small.js +0 -0
  3274. /package/full/string/{virtual → prototype}/starts-with.js +0 -0
  3275. /package/full/string/{virtual → prototype}/strike.js +0 -0
  3276. /package/full/string/{virtual → prototype}/sub.js +0 -0
  3277. /package/full/string/{virtual → prototype}/sup.js +0 -0
  3278. /package/full/string/{virtual → prototype}/to-well-formed.js +0 -0
  3279. /package/full/string/{virtual → prototype}/trim-end.js +0 -0
  3280. /package/full/string/{virtual → prototype}/trim-left.js +0 -0
  3281. /package/full/string/{virtual → prototype}/trim-right.js +0 -0
  3282. /package/full/string/{virtual → prototype}/trim-start.js +0 -0
  3283. /package/full/string/{virtual → prototype}/trim.js +0 -0
  3284. /package/internals/{engine-is-ie11.js → environment-is-ie11.js} +0 -0
  3285. /package/stable/array/{virtual → prototype}/at.js +0 -0
  3286. /package/stable/array/{virtual → prototype}/concat.js +0 -0
  3287. /package/stable/array/{virtual → prototype}/copy-within.js +0 -0
  3288. /package/stable/array/{virtual → prototype}/entries.js +0 -0
  3289. /package/stable/array/{virtual → prototype}/fill.js +0 -0
  3290. /package/stable/array/{virtual → prototype}/filter.js +0 -0
  3291. /package/stable/array/{virtual → prototype}/find-index.js +0 -0
  3292. /package/stable/array/{virtual → prototype}/find-last-index.js +0 -0
  3293. /package/stable/array/{virtual → prototype}/find-last.js +0 -0
  3294. /package/stable/array/{virtual → prototype}/find.js +0 -0
  3295. /package/stable/array/{virtual → prototype}/flat-map.js +0 -0
  3296. /package/stable/array/{virtual → prototype}/flat.js +0 -0
  3297. /package/stable/array/{virtual → prototype}/includes.js +0 -0
  3298. /package/stable/array/{virtual → prototype}/index-of.js +0 -0
  3299. /package/stable/array/{virtual → prototype}/join.js +0 -0
  3300. /package/stable/array/{virtual → prototype}/keys.js +0 -0
  3301. /package/stable/array/{virtual → prototype}/last-index-of.js +0 -0
  3302. /package/stable/array/{virtual → prototype}/map.js +0 -0
  3303. /package/stable/array/{virtual → prototype}/push.js +0 -0
  3304. /package/stable/array/{virtual → prototype}/reduce-right.js +0 -0
  3305. /package/stable/array/{virtual → prototype}/reduce.js +0 -0
  3306. /package/stable/array/{virtual → prototype}/reverse.js +0 -0
  3307. /package/stable/array/{virtual → prototype}/slice.js +0 -0
  3308. /package/stable/array/{virtual → prototype}/sort.js +0 -0
  3309. /package/stable/array/{virtual → prototype}/splice.js +0 -0
  3310. /package/stable/array/{virtual → prototype}/to-reversed.js +0 -0
  3311. /package/stable/array/{virtual → prototype}/to-sorted.js +0 -0
  3312. /package/stable/array/{virtual → prototype}/to-spliced.js +0 -0
  3313. /package/stable/array/{virtual → prototype}/unshift.js +0 -0
  3314. /package/stable/array/{virtual → prototype}/with.js +0 -0
  3315. /package/stable/date/{virtual → prototype}/to-json.js +0 -0
  3316. /package/stable/number/{virtual → prototype}/to-exponential.js +0 -0
  3317. /package/stable/number/{virtual → prototype}/to-fixed.js +0 -0
  3318. /package/stable/object/{virtual → prototype}/define-getter.js +0 -0
  3319. /package/stable/object/{virtual → prototype}/define-setter.js +0 -0
  3320. /package/stable/object/{virtual → prototype}/lookup-getter.js +0 -0
  3321. /package/stable/object/{virtual → prototype}/lookup-setter.js +0 -0
  3322. /package/stable/object/{virtual → prototype}/to-string.js +0 -0
  3323. /package/stable/promise/{virtual → prototype}/catch.js +0 -0
  3324. /package/stable/promise/{virtual → prototype}/finally.js +0 -0
  3325. /package/stable/string/{virtual → prototype}/anchor.js +0 -0
  3326. /package/stable/string/{virtual → prototype}/at.js +0 -0
  3327. /package/stable/string/{virtual → prototype}/big.js +0 -0
  3328. /package/stable/string/{virtual → prototype}/blink.js +0 -0
  3329. /package/stable/string/{virtual → prototype}/bold.js +0 -0
  3330. /package/stable/string/{virtual → prototype}/code-point-at.js +0 -0
  3331. /package/stable/string/{virtual → prototype}/ends-with.js +0 -0
  3332. /package/stable/string/{virtual → prototype}/fixed.js +0 -0
  3333. /package/stable/string/{virtual → prototype}/fontcolor.js +0 -0
  3334. /package/stable/string/{virtual → prototype}/fontsize.js +0 -0
  3335. /package/stable/string/{virtual → prototype}/includes.js +0 -0
  3336. /package/stable/string/{virtual → prototype}/is-well-formed.js +0 -0
  3337. /package/stable/string/{virtual → prototype}/italics.js +0 -0
  3338. /package/stable/string/{virtual → prototype}/link.js +0 -0
  3339. /package/stable/string/{virtual → prototype}/match-all.js +0 -0
  3340. /package/stable/string/{virtual → prototype}/pad-end.js +0 -0
  3341. /package/stable/string/{virtual → prototype}/pad-start.js +0 -0
  3342. /package/stable/string/{virtual → prototype}/repeat.js +0 -0
  3343. /package/stable/string/{virtual → prototype}/replace-all.js +0 -0
  3344. /package/stable/string/{virtual → prototype}/small.js +0 -0
  3345. /package/stable/string/{virtual → prototype}/starts-with.js +0 -0
  3346. /package/stable/string/{virtual → prototype}/strike.js +0 -0
  3347. /package/stable/string/{virtual → prototype}/sub.js +0 -0
  3348. /package/stable/string/{virtual → prototype}/sup.js +0 -0
  3349. /package/stable/string/{virtual → prototype}/to-well-formed.js +0 -0
  3350. /package/stable/string/{virtual → prototype}/trim-end.js +0 -0
  3351. /package/stable/string/{virtual → prototype}/trim-left.js +0 -0
  3352. /package/stable/string/{virtual → prototype}/trim-right.js +0 -0
  3353. /package/stable/string/{virtual → prototype}/trim-start.js +0 -0
  3354. /package/stable/string/{virtual → prototype}/trim.js +0 -0
package/LICENSE CHANGED
@@ -1,19 +1,32 @@
1
- Copyright (c) 2014-2024 Denis Pushkarev
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy
4
- of this software and associated documentation files (the "Software"), to deal
5
- in the Software without restriction, including without limitation the rights
6
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- copies of the Software, and to permit persons to whom the Software is
8
- furnished to do so, subject to the following conditions:
9
-
10
- The above copyright notice and this permission notice shall be included in
11
- all copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- THE SOFTWARE.
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
- > Modular standard library for JavaScript. Includes polyfills for [ECMAScript up to 2023](https://github.com/zloirock/core-js#ecmascript): [promises](https://github.com/zloirock/core-js#ecmascript-promise), [symbols](https://github.com/zloirock/core-js#ecmascript-symbol), [collections](https://github.com/zloirock/core-js#ecmascript-collections), iterators, [typed arrays](https://github.com/zloirock/core-js#ecmascript-typed-arrays), many other features, [ECMAScript proposals](https://github.com/zloirock/core-js#ecmascript-proposals), [some cross-platform WHATWG / W3C features and proposals](#web-standards) like [`URL`](https://github.com/zloirock/core-js#url-and-urlsearchparams). You can load only required features or use it without global namespace pollution.
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/2mknex43):
28
+ [*Example of usage*](https://tinyurl.com/28zqjbun):
29
29
  ```js
30
30
  import 'core-js/actual';
31
31
 
32
- Promise.resolve(42).then(it => console.log(it)); // => 42
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++; })(1)
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.resolve(42).then(it => console.log(it)); // => 42
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++; })(1)
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.resolve(42).then(it => console.log(it)); // => 42
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.from(function * (i) { while (true) yield i++; }(1))
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://github.com/zloirock/core-js/blob/master/README.md).**
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
 
@@ -0,0 +1,6 @@
1
+ 'use strict';
2
+ require('../../modules/es.error.is-error');
3
+
4
+ var getBuiltInStaticMethod = require('../../internals/get-built-in-static-method');
5
+
6
+ module.exports = getBuiltInStaticMethod('Error', 'isError');
@@ -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/esnext.array.from-async');
10
+ require('../../modules/web.dom-collections.iterator');
10
11
 
11
12
  var getBuiltInStaticMethod = require('../../internals/get-built-in-static-method');
12
13
 
@@ -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
 
@@ -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/esnext.array.from-async');
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
+ };
@@ -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,7 @@
1
+ 'use strict';
2
+ require('../../../modules/es.object.to-string');
3
+ require('../../../modules/es.array.iterator');
4
+
5
+ var getIteratorMethod = require('../../../internals/get-iterator-method');
6
+
7
+ module.exports = 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');
@@ -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