core-js 3.49.0 → 4.0.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5755) hide show
  1. package/LICENSE +32 -20
  2. package/README.md +7 -7
  3. package/actual/aggregate-error/constructor.js +11 -0
  4. package/actual/aggregate-error/index.js +12 -0
  5. package/actual/aggregate-error/is-error.js +6 -0
  6. package/actual/array/at.js +4 -2
  7. package/actual/array/concat.js +4 -2
  8. package/actual/array/copy-within.js +4 -2
  9. package/actual/array/entries.js +5 -2
  10. package/actual/array/fill.js +4 -2
  11. package/actual/array/filter.js +4 -2
  12. package/actual/array/find-index.js +4 -2
  13. package/actual/array/find-last-index.js +4 -3
  14. package/actual/array/find-last.js +4 -3
  15. package/actual/array/find.js +4 -2
  16. package/actual/array/flat-map.js +5 -2
  17. package/actual/array/flat.js +5 -2
  18. package/actual/array/from-async.js +12 -3
  19. package/actual/array/from.js +8 -2
  20. package/actual/array/includes.js +4 -2
  21. package/actual/array/index-of.js +4 -2
  22. package/actual/array/index.js +48 -14
  23. package/actual/array/instance/at.js +11 -0
  24. package/actual/array/instance/concat.js +11 -0
  25. package/actual/array/instance/copy-within.js +11 -0
  26. package/actual/array/instance/entries.js +11 -0
  27. package/actual/array/instance/fill.js +11 -0
  28. package/actual/array/instance/filter.js +11 -0
  29. package/actual/array/instance/find-index.js +11 -0
  30. package/actual/array/instance/find-last-index.js +11 -0
  31. package/actual/array/instance/find-last.js +11 -0
  32. package/actual/array/instance/find.js +11 -0
  33. package/actual/array/instance/flat-map.js +11 -0
  34. package/actual/array/instance/flat.js +11 -0
  35. package/actual/array/instance/includes.js +11 -0
  36. package/actual/array/instance/index-of.js +11 -0
  37. package/actual/array/instance/join.js +11 -0
  38. package/actual/array/instance/keys.js +11 -0
  39. package/actual/array/instance/last-index-of.js +11 -0
  40. package/actual/array/instance/map.js +11 -0
  41. package/actual/array/instance/push.js +11 -0
  42. package/actual/array/instance/reduce-right.js +11 -0
  43. package/actual/array/instance/reduce.js +11 -0
  44. package/actual/array/instance/reverse.js +11 -0
  45. package/actual/array/instance/slice.js +11 -0
  46. package/actual/array/instance/sort.js +11 -0
  47. package/actual/array/instance/splice.js +11 -0
  48. package/actual/array/instance/to-reversed.js +11 -0
  49. package/actual/array/instance/to-sorted.js +11 -0
  50. package/actual/array/instance/to-spliced.js +11 -0
  51. package/actual/array/instance/unshift.js +11 -0
  52. package/actual/array/instance/values.js +11 -0
  53. package/actual/array/instance/with.js +11 -0
  54. package/actual/array/iterator.js +6 -2
  55. package/actual/array/join.js +4 -2
  56. package/actual/array/keys.js +5 -2
  57. package/actual/array/last-index-of.js +4 -2
  58. package/actual/array/map.js +4 -2
  59. package/actual/array/of.js +4 -2
  60. package/actual/array/prototype/at.js +6 -0
  61. package/actual/array/prototype/concat.js +6 -0
  62. package/actual/array/prototype/copy-within.js +6 -0
  63. package/actual/array/prototype/entries.js +7 -0
  64. package/actual/array/prototype/fill.js +6 -0
  65. package/actual/array/prototype/filter.js +6 -0
  66. package/actual/array/prototype/find-index.js +6 -0
  67. package/actual/array/prototype/find-last-index.js +6 -0
  68. package/actual/array/prototype/find-last.js +6 -0
  69. package/actual/array/prototype/find.js +6 -0
  70. package/actual/array/prototype/flat-map.js +7 -0
  71. package/actual/array/prototype/flat.js +7 -0
  72. package/actual/array/prototype/includes.js +6 -0
  73. package/actual/array/prototype/index-of.js +6 -0
  74. package/actual/array/prototype/iterator.js +7 -0
  75. package/actual/array/prototype/join.js +6 -0
  76. package/actual/array/prototype/keys.js +7 -0
  77. package/actual/array/prototype/last-index-of.js +6 -0
  78. package/actual/array/prototype/map.js +6 -0
  79. package/actual/array/prototype/push.js +6 -0
  80. package/actual/array/prototype/reduce-right.js +6 -0
  81. package/actual/array/prototype/reduce.js +6 -0
  82. package/actual/array/prototype/reverse.js +6 -0
  83. package/actual/array/prototype/slice.js +6 -0
  84. package/actual/array/prototype/sort.js +6 -0
  85. package/actual/array/prototype/splice.js +6 -0
  86. package/actual/array/prototype/to-reversed.js +6 -0
  87. package/actual/array/prototype/to-sorted.js +7 -0
  88. package/actual/array/prototype/to-spliced.js +6 -0
  89. package/actual/array/prototype/unshift.js +6 -0
  90. package/actual/array/prototype/values.js +10 -0
  91. package/actual/array/prototype/with.js +6 -0
  92. package/actual/array/push.js +4 -2
  93. package/actual/array/reduce-right.js +4 -2
  94. package/actual/array/reduce.js +4 -2
  95. package/actual/array/reverse.js +4 -2
  96. package/actual/array/slice.js +4 -2
  97. package/actual/array/sort.js +4 -2
  98. package/actual/array/splice.js +4 -2
  99. package/actual/array/to-reversed.js +4 -4
  100. package/actual/array/to-sorted.js +5 -4
  101. package/actual/array/to-spliced.js +4 -4
  102. package/actual/array/unshift.js +4 -2
  103. package/actual/array/values.js +8 -2
  104. package/actual/array/with.js +4 -4
  105. package/actual/array-buffer/constructor.js +11 -5
  106. package/actual/array-buffer/detached.js +1 -4
  107. package/actual/array-buffer/index.js +12 -5
  108. package/actual/array-buffer/is-view.js +4 -2
  109. package/actual/array-buffer/slice.js +1 -3
  110. package/actual/array-buffer/transfer-to-fixed-length.js +2 -4
  111. package/actual/array-buffer/transfer.js +2 -4
  112. package/actual/async-disposable-stack/constructor.js +12 -6
  113. package/actual/async-disposable-stack/index.js +12 -6
  114. package/actual/async-iterator/index.js +6 -18
  115. package/actual/atob.js +8 -2
  116. package/actual/btoa.js +8 -2
  117. package/actual/clear-immediate.js +4 -2
  118. package/actual/data-view/constructor.js +13 -0
  119. package/actual/data-view/get-float16.js +1 -4
  120. package/actual/data-view/index.js +11 -4
  121. package/actual/data-view/set-float16.js +2 -4
  122. package/actual/date/index.js +5 -2
  123. package/actual/date/prototype/to-json.js +6 -0
  124. package/actual/date/to-json.js +4 -2
  125. package/actual/disposable-stack/constructor.js +7 -5
  126. package/actual/disposable-stack/index.js +7 -5
  127. package/actual/dom-collections/entries.js +4 -0
  128. package/actual/dom-collections/for-each.js +1 -3
  129. package/actual/dom-collections/index.js +9 -3
  130. package/actual/dom-collections/instance/entries.js +21 -0
  131. package/actual/dom-collections/instance/for-each.js +19 -0
  132. package/actual/dom-collections/instance/keys.js +21 -0
  133. package/actual/dom-collections/instance/values.js +21 -0
  134. package/actual/dom-collections/iterator.js +3 -3
  135. package/actual/dom-collections/keys.js +4 -0
  136. package/actual/dom-collections/prototype/entries.js +8 -0
  137. package/actual/dom-collections/prototype/for-each.js +6 -0
  138. package/actual/dom-collections/prototype/keys.js +8 -0
  139. package/actual/dom-collections/prototype/values.js +8 -0
  140. package/actual/dom-collections/values.js +4 -0
  141. package/actual/dom-exception/constructor.js +7 -2
  142. package/actual/dom-exception/index.js +7 -2
  143. package/actual/error/constructor.js +4 -2
  144. package/actual/error/index.js +5 -4
  145. package/actual/error/is-error.js +4 -3
  146. package/actual/eval-error/constructor.js +6 -0
  147. package/actual/eval-error/index.js +7 -0
  148. package/actual/eval-error/is-error.js +6 -0
  149. package/actual/float32-array/at.js +2 -0
  150. package/actual/float32-array/constructor.js +46 -0
  151. package/actual/float32-array/copy-within.js +2 -0
  152. package/actual/float32-array/entries.js +4 -0
  153. package/actual/float32-array/every.js +2 -0
  154. package/actual/float32-array/fill.js +2 -0
  155. package/actual/float32-array/filter.js +2 -0
  156. package/actual/float32-array/find-index.js +2 -0
  157. package/actual/float32-array/find-last-index.js +2 -0
  158. package/actual/float32-array/find-last.js +2 -0
  159. package/actual/float32-array/find.js +2 -0
  160. package/actual/float32-array/for-each.js +2 -0
  161. package/actual/float32-array/from.js +42 -0
  162. package/actual/float32-array/includes.js +2 -0
  163. package/actual/float32-array/index-of.js +2 -0
  164. package/actual/float32-array/index.js +48 -0
  165. package/actual/float32-array/iterator.js +4 -0
  166. package/actual/float32-array/join.js +2 -0
  167. package/actual/float32-array/keys.js +4 -0
  168. package/actual/float32-array/last-index-of.js +2 -0
  169. package/actual/float32-array/map.js +2 -0
  170. package/actual/float32-array/of.js +40 -0
  171. package/actual/float32-array/reduce-right.js +2 -0
  172. package/actual/float32-array/reduce.js +2 -0
  173. package/actual/float32-array/reverse.js +2 -0
  174. package/actual/float32-array/set.js +2 -0
  175. package/actual/float32-array/slice.js +2 -0
  176. package/actual/float32-array/some.js +2 -0
  177. package/actual/float32-array/sort.js +2 -0
  178. package/actual/float32-array/subarray.js +2 -0
  179. package/actual/float32-array/to-locale-string.js +2 -0
  180. package/actual/float32-array/to-reversed.js +2 -0
  181. package/actual/float32-array/to-sorted.js +2 -0
  182. package/actual/float32-array/to-string.js +2 -0
  183. package/actual/float32-array/values.js +5 -0
  184. package/actual/float32-array/with.js +2 -0
  185. package/actual/float64-array/at.js +2 -0
  186. package/actual/float64-array/constructor.js +46 -0
  187. package/actual/float64-array/copy-within.js +2 -0
  188. package/actual/float64-array/entries.js +4 -0
  189. package/actual/float64-array/every.js +2 -0
  190. package/actual/float64-array/fill.js +2 -0
  191. package/actual/float64-array/filter.js +2 -0
  192. package/actual/float64-array/find-index.js +2 -0
  193. package/actual/float64-array/find-last-index.js +2 -0
  194. package/actual/float64-array/find-last.js +2 -0
  195. package/actual/float64-array/find.js +2 -0
  196. package/actual/float64-array/for-each.js +2 -0
  197. package/actual/float64-array/from.js +42 -0
  198. package/actual/float64-array/includes.js +2 -0
  199. package/actual/float64-array/index-of.js +2 -0
  200. package/actual/float64-array/index.js +48 -0
  201. package/actual/float64-array/iterator.js +4 -0
  202. package/actual/float64-array/join.js +2 -0
  203. package/actual/float64-array/keys.js +4 -0
  204. package/actual/float64-array/last-index-of.js +2 -0
  205. package/actual/float64-array/map.js +2 -0
  206. package/actual/float64-array/of.js +40 -0
  207. package/actual/float64-array/reduce-right.js +2 -0
  208. package/actual/float64-array/reduce.js +2 -0
  209. package/actual/float64-array/reverse.js +2 -0
  210. package/actual/float64-array/set.js +2 -0
  211. package/actual/float64-array/slice.js +2 -0
  212. package/actual/float64-array/some.js +2 -0
  213. package/actual/float64-array/sort.js +2 -0
  214. package/actual/float64-array/subarray.js +2 -0
  215. package/actual/float64-array/to-locale-string.js +2 -0
  216. package/actual/float64-array/to-reversed.js +2 -0
  217. package/actual/float64-array/to-sorted.js +2 -0
  218. package/actual/float64-array/to-string.js +2 -0
  219. package/actual/float64-array/values.js +5 -0
  220. package/actual/float64-array/with.js +2 -0
  221. package/actual/function/index.js +5 -2
  222. package/actual/function/instance/name.js +9 -0
  223. package/actual/function/name.js +4 -2
  224. package/actual/get-iterator-method.js +7 -2
  225. package/actual/get-iterator.js +7 -2
  226. package/actual/global-this.js +4 -2
  227. package/actual/index.js +333 -3
  228. package/actual/instance/at.js +13 -2
  229. package/actual/instance/code-point-at.js +10 -2
  230. package/actual/instance/concat.js +9 -2
  231. package/actual/instance/copy-within.js +9 -2
  232. package/actual/instance/ends-with.js +10 -2
  233. package/actual/instance/entries.js +21 -2
  234. package/actual/instance/fill.js +9 -2
  235. package/actual/instance/filter.js +9 -2
  236. package/actual/instance/find-index.js +9 -2
  237. package/actual/instance/find-last-index.js +4 -3
  238. package/actual/instance/find-last.js +4 -3
  239. package/actual/instance/find.js +9 -2
  240. package/actual/instance/flags.js +9 -2
  241. package/actual/instance/flat-map.js +9 -2
  242. package/actual/instance/flat.js +9 -2
  243. package/actual/instance/for-each.js +17 -2
  244. package/actual/instance/includes.js +13 -2
  245. package/actual/instance/index-of.js +9 -2
  246. package/actual/instance/is-well-formed.js +10 -2
  247. package/actual/instance/join.js +11 -0
  248. package/actual/instance/keys.js +21 -2
  249. package/actual/instance/last-index-of.js +9 -2
  250. package/actual/instance/map.js +9 -2
  251. package/actual/instance/match-all.js +10 -2
  252. package/actual/instance/name.js +9 -0
  253. package/actual/instance/pad-end.js +10 -2
  254. package/actual/instance/pad-start.js +10 -2
  255. package/actual/instance/push.js +9 -2
  256. package/actual/instance/reduce-right.js +9 -2
  257. package/actual/instance/reduce.js +9 -2
  258. package/actual/instance/repeat.js +10 -2
  259. package/actual/instance/replace-all.js +10 -2
  260. package/actual/instance/reverse.js +9 -2
  261. package/actual/instance/slice.js +9 -2
  262. package/actual/instance/sort.js +9 -2
  263. package/actual/instance/splice.js +9 -2
  264. package/actual/instance/starts-with.js +10 -2
  265. package/actual/instance/to-exponential.js +12 -0
  266. package/actual/instance/to-fixed.js +12 -0
  267. package/actual/instance/to-reversed.js +4 -3
  268. package/actual/instance/to-sorted.js +4 -3
  269. package/actual/instance/to-spliced.js +4 -3
  270. package/actual/instance/to-well-formed.js +10 -2
  271. package/actual/instance/trim-end.js +10 -2
  272. package/actual/instance/trim-left.js +10 -2
  273. package/actual/instance/trim-right.js +10 -2
  274. package/actual/instance/trim-start.js +10 -2
  275. package/actual/instance/trim.js +10 -2
  276. package/actual/instance/unshift.js +9 -2
  277. package/actual/instance/values.js +24 -2
  278. package/actual/instance/with.js +4 -3
  279. package/actual/int16-array/at.js +2 -0
  280. package/actual/int16-array/constructor.js +46 -0
  281. package/actual/int16-array/copy-within.js +2 -0
  282. package/actual/int16-array/entries.js +4 -0
  283. package/actual/int16-array/every.js +2 -0
  284. package/actual/int16-array/fill.js +2 -0
  285. package/actual/int16-array/filter.js +2 -0
  286. package/actual/int16-array/find-index.js +2 -0
  287. package/actual/int16-array/find-last-index.js +2 -0
  288. package/actual/int16-array/find-last.js +2 -0
  289. package/actual/int16-array/find.js +2 -0
  290. package/actual/int16-array/for-each.js +2 -0
  291. package/actual/int16-array/from.js +42 -0
  292. package/actual/int16-array/includes.js +2 -0
  293. package/actual/int16-array/index-of.js +2 -0
  294. package/actual/int16-array/index.js +48 -0
  295. package/actual/int16-array/iterator.js +4 -0
  296. package/actual/int16-array/join.js +2 -0
  297. package/actual/int16-array/keys.js +4 -0
  298. package/actual/int16-array/last-index-of.js +2 -0
  299. package/actual/int16-array/map.js +2 -0
  300. package/actual/int16-array/of.js +40 -0
  301. package/actual/int16-array/reduce-right.js +2 -0
  302. package/actual/int16-array/reduce.js +2 -0
  303. package/actual/int16-array/reverse.js +2 -0
  304. package/actual/int16-array/set.js +2 -0
  305. package/actual/int16-array/slice.js +2 -0
  306. package/actual/int16-array/some.js +2 -0
  307. package/actual/int16-array/sort.js +2 -0
  308. package/actual/int16-array/subarray.js +2 -0
  309. package/actual/int16-array/to-locale-string.js +2 -0
  310. package/actual/int16-array/to-reversed.js +2 -0
  311. package/actual/int16-array/to-sorted.js +2 -0
  312. package/actual/int16-array/to-string.js +2 -0
  313. package/actual/int16-array/values.js +5 -0
  314. package/actual/int16-array/with.js +2 -0
  315. package/actual/int32-array/at.js +2 -0
  316. package/actual/int32-array/constructor.js +46 -0
  317. package/actual/int32-array/copy-within.js +2 -0
  318. package/actual/int32-array/entries.js +4 -0
  319. package/actual/int32-array/every.js +2 -0
  320. package/actual/int32-array/fill.js +2 -0
  321. package/actual/int32-array/filter.js +2 -0
  322. package/actual/int32-array/find-index.js +2 -0
  323. package/actual/int32-array/find-last-index.js +2 -0
  324. package/actual/int32-array/find-last.js +2 -0
  325. package/actual/int32-array/find.js +2 -0
  326. package/actual/int32-array/for-each.js +2 -0
  327. package/actual/int32-array/from.js +42 -0
  328. package/actual/int32-array/includes.js +2 -0
  329. package/actual/int32-array/index-of.js +2 -0
  330. package/actual/int32-array/index.js +48 -0
  331. package/actual/int32-array/iterator.js +4 -0
  332. package/actual/int32-array/join.js +2 -0
  333. package/actual/int32-array/keys.js +4 -0
  334. package/actual/int32-array/last-index-of.js +2 -0
  335. package/actual/int32-array/map.js +2 -0
  336. package/actual/int32-array/of.js +40 -0
  337. package/actual/int32-array/reduce-right.js +2 -0
  338. package/actual/int32-array/reduce.js +2 -0
  339. package/actual/int32-array/reverse.js +2 -0
  340. package/actual/int32-array/set.js +2 -0
  341. package/actual/int32-array/slice.js +2 -0
  342. package/actual/int32-array/some.js +2 -0
  343. package/actual/int32-array/sort.js +2 -0
  344. package/actual/int32-array/subarray.js +2 -0
  345. package/actual/int32-array/to-locale-string.js +2 -0
  346. package/actual/int32-array/to-reversed.js +2 -0
  347. package/actual/int32-array/to-sorted.js +2 -0
  348. package/actual/int32-array/to-string.js +2 -0
  349. package/actual/int32-array/values.js +5 -0
  350. package/actual/int32-array/with.js +2 -0
  351. package/actual/int8-array/at.js +2 -0
  352. package/actual/int8-array/constructor.js +46 -0
  353. package/actual/int8-array/copy-within.js +2 -0
  354. package/actual/int8-array/entries.js +4 -0
  355. package/actual/int8-array/every.js +2 -0
  356. package/actual/int8-array/fill.js +2 -0
  357. package/actual/int8-array/filter.js +2 -0
  358. package/actual/int8-array/find-index.js +2 -0
  359. package/actual/int8-array/find-last-index.js +2 -0
  360. package/actual/int8-array/find-last.js +2 -0
  361. package/actual/int8-array/find.js +2 -0
  362. package/actual/int8-array/for-each.js +2 -0
  363. package/actual/int8-array/from.js +42 -0
  364. package/actual/int8-array/includes.js +2 -0
  365. package/actual/int8-array/index-of.js +2 -0
  366. package/actual/int8-array/index.js +48 -0
  367. package/actual/int8-array/iterator.js +4 -0
  368. package/actual/int8-array/join.js +2 -0
  369. package/actual/int8-array/keys.js +4 -0
  370. package/actual/int8-array/last-index-of.js +2 -0
  371. package/actual/int8-array/map.js +2 -0
  372. package/actual/int8-array/of.js +40 -0
  373. package/actual/int8-array/reduce-right.js +2 -0
  374. package/actual/int8-array/reduce.js +2 -0
  375. package/actual/int8-array/reverse.js +2 -0
  376. package/actual/int8-array/set.js +2 -0
  377. package/actual/int8-array/slice.js +2 -0
  378. package/actual/int8-array/some.js +2 -0
  379. package/actual/int8-array/sort.js +2 -0
  380. package/actual/int8-array/subarray.js +2 -0
  381. package/actual/int8-array/to-locale-string.js +2 -0
  382. package/actual/int8-array/to-reversed.js +2 -0
  383. package/actual/int8-array/to-sorted.js +2 -0
  384. package/actual/int8-array/to-string.js +2 -0
  385. package/actual/int8-array/values.js +5 -0
  386. package/actual/int8-array/with.js +2 -0
  387. package/actual/is-iterable.js +7 -2
  388. package/actual/iterator/concat.js +21 -3
  389. package/actual/iterator/constructor.js +22 -0
  390. package/actual/iterator/drop.js +6 -4
  391. package/actual/iterator/every.js +9 -4
  392. package/actual/iterator/filter.js +6 -4
  393. package/actual/iterator/find.js +9 -4
  394. package/actual/iterator/flat-map.js +9 -4
  395. package/actual/iterator/for-each.js +9 -4
  396. package/actual/iterator/from.js +21 -18
  397. package/actual/iterator/index.js +23 -20
  398. package/actual/iterator/map.js +6 -4
  399. package/actual/iterator/prototype/drop.js +8 -0
  400. package/actual/iterator/prototype/every.js +11 -0
  401. package/actual/iterator/prototype/filter.js +8 -0
  402. package/actual/iterator/prototype/find.js +11 -0
  403. package/actual/iterator/prototype/flat-map.js +11 -0
  404. package/actual/iterator/prototype/for-each.js +11 -0
  405. package/actual/iterator/prototype/map.js +8 -0
  406. package/actual/iterator/prototype/reduce.js +11 -0
  407. package/actual/iterator/prototype/some.js +11 -0
  408. package/actual/iterator/prototype/take.js +8 -0
  409. package/actual/iterator/prototype/to-array.js +11 -0
  410. package/actual/iterator/reduce.js +9 -4
  411. package/actual/iterator/some.js +9 -4
  412. package/actual/iterator/take.js +6 -4
  413. package/actual/iterator/to-array.js +9 -4
  414. package/actual/iterator/zip-keyed.js +6 -6
  415. package/actual/iterator/zip.js +5 -4
  416. package/actual/json/index.js +10 -5
  417. package/actual/json/is-raw-json.js +4 -3
  418. package/actual/json/parse.js +4 -3
  419. package/actual/json/raw-json.js +4 -4
  420. package/actual/json/stringify.js +5 -2
  421. package/actual/map/constructor.js +13 -0
  422. package/actual/map/get-or-insert-computed.js +9 -3
  423. package/actual/map/get-or-insert.js +9 -3
  424. package/actual/map/group-by.js +12 -5
  425. package/actual/map/index.js +12 -5
  426. package/actual/map/prototype/get-or-insert-computed.js +11 -0
  427. package/actual/map/prototype/get-or-insert.js +11 -0
  428. package/actual/math/acosh.js +4 -2
  429. package/actual/math/asinh.js +4 -2
  430. package/actual/math/atanh.js +4 -2
  431. package/actual/math/cbrt.js +4 -2
  432. package/actual/math/clz32.js +4 -2
  433. package/actual/math/cosh.js +4 -2
  434. package/actual/math/expm1.js +4 -2
  435. package/actual/math/f16round.js +4 -3
  436. package/actual/math/fround.js +4 -2
  437. package/actual/math/hypot.js +4 -2
  438. package/actual/math/imul.js +4 -2
  439. package/actual/math/index.js +27 -4
  440. package/actual/math/log10.js +4 -2
  441. package/actual/math/log1p.js +4 -2
  442. package/actual/math/log2.js +4 -2
  443. package/actual/math/sign.js +4 -2
  444. package/actual/math/sinh.js +4 -2
  445. package/actual/math/sum-precise.js +8 -3
  446. package/actual/math/tanh.js +4 -2
  447. package/actual/math/trunc.js +4 -2
  448. package/actual/number/constructor.js +4 -2
  449. package/actual/number/epsilon.js +4 -2
  450. package/actual/number/index.js +18 -2
  451. package/actual/number/instance/to-exponential.js +12 -0
  452. package/actual/number/instance/to-fixed.js +12 -0
  453. package/actual/number/is-finite.js +4 -2
  454. package/actual/number/is-integer.js +4 -2
  455. package/actual/number/is-nan.js +4 -2
  456. package/actual/number/is-safe-integer.js +4 -2
  457. package/actual/number/max-safe-integer.js +4 -2
  458. package/actual/number/min-safe-integer.js +4 -2
  459. package/actual/number/parse-float.js +5 -2
  460. package/actual/number/parse-int.js +5 -2
  461. package/actual/number/prototype/to-exponential.js +7 -0
  462. package/actual/number/prototype/to-fixed.js +7 -0
  463. package/actual/number/to-exponential.js +5 -2
  464. package/actual/number/to-fixed.js +5 -2
  465. package/actual/object/assign.js +4 -2
  466. package/actual/object/create.js +5 -2
  467. package/actual/object/define-getter.js +4 -2
  468. package/actual/object/define-properties.js +5 -2
  469. package/actual/object/define-property.js +5 -2
  470. package/actual/object/define-setter.js +4 -2
  471. package/actual/object/entries.js +4 -2
  472. package/actual/object/freeze.js +4 -2
  473. package/actual/object/from-entries.js +8 -2
  474. package/actual/object/get-own-property-descriptor.js +7 -2
  475. package/actual/object/get-own-property-descriptors.js +4 -2
  476. package/actual/object/get-own-property-names.js +7 -2
  477. package/actual/object/get-own-property-symbols.js +4 -2
  478. package/actual/object/get-prototype-of.js +4 -2
  479. package/actual/object/group-by.js +8 -3
  480. package/actual/object/has-own.js +4 -2
  481. package/actual/object/index.js +32 -3
  482. package/actual/object/is-extensible.js +4 -2
  483. package/actual/object/is-frozen.js +4 -2
  484. package/actual/object/is-sealed.js +4 -2
  485. package/actual/object/is.js +4 -2
  486. package/actual/object/keys.js +4 -2
  487. package/actual/object/lookup-getter.js +4 -2
  488. package/actual/object/lookup-setter.js +4 -2
  489. package/actual/object/prevent-extensions.js +4 -2
  490. package/actual/object/proto.js +1 -3
  491. package/actual/object/prototype/define-getter.js +6 -0
  492. package/actual/object/prototype/define-setter.js +6 -0
  493. package/actual/object/prototype/lookup-getter.js +6 -0
  494. package/actual/object/prototype/lookup-setter.js +6 -0
  495. package/actual/object/prototype/to-string.js +6 -0
  496. package/actual/object/seal.js +4 -2
  497. package/actual/object/set-prototype-of.js +4 -2
  498. package/actual/object/to-string.js +4 -2
  499. package/actual/object/values.js +4 -2
  500. package/actual/parse-float.js +4 -2
  501. package/actual/parse-int.js +4 -2
  502. package/actual/promise/all-settled.js +19 -2
  503. package/actual/promise/all.js +21 -0
  504. package/actual/promise/any.js +20 -2
  505. package/actual/promise/catch.js +8 -0
  506. package/actual/promise/constructor.js +9 -0
  507. package/actual/promise/finally.js +6 -2
  508. package/actual/promise/index.js +19 -5
  509. package/actual/promise/prototype/catch.js +8 -0
  510. package/actual/promise/prototype/finally.js +8 -0
  511. package/actual/promise/race.js +21 -0
  512. package/actual/promise/reject.js +17 -0
  513. package/actual/promise/resolve.js +17 -0
  514. package/actual/promise/try.js +15 -4
  515. package/actual/promise/with-resolvers.js +15 -4
  516. package/actual/queue-microtask.js +4 -2
  517. package/actual/range-error/constructor.js +6 -0
  518. package/actual/range-error/index.js +7 -0
  519. package/actual/range-error/is-error.js +6 -0
  520. package/actual/reference-error/constructor.js +6 -0
  521. package/actual/reference-error/index.js +7 -0
  522. package/actual/reference-error/is-error.js +6 -0
  523. package/actual/reflect/apply.js +4 -2
  524. package/actual/reflect/construct.js +4 -2
  525. package/actual/reflect/define-property.js +4 -2
  526. package/actual/reflect/delete-property.js +4 -2
  527. package/actual/reflect/get-own-property-descriptor.js +4 -2
  528. package/actual/reflect/get-prototype-of.js +4 -2
  529. package/actual/reflect/get.js +4 -2
  530. package/actual/reflect/has.js +4 -2
  531. package/actual/reflect/index.js +18 -2
  532. package/actual/reflect/is-extensible.js +4 -2
  533. package/actual/reflect/own-keys.js +4 -2
  534. package/actual/reflect/prevent-extensions.js +4 -2
  535. package/actual/reflect/set-prototype-of.js +4 -2
  536. package/actual/reflect/set.js +4 -2
  537. package/actual/regexp/constructor.js +4 -3
  538. package/actual/regexp/dot-all.js +3 -3
  539. package/actual/regexp/escape.js +6 -3
  540. package/actual/regexp/exec.js +2 -0
  541. package/actual/regexp/flags.js +4 -2
  542. package/actual/regexp/index.js +14 -4
  543. package/actual/regexp/instance/flags.js +11 -0
  544. package/actual/regexp/match.js +2 -3
  545. package/actual/regexp/replace.js +2 -3
  546. package/actual/regexp/search.js +2 -3
  547. package/actual/regexp/split.js +2 -3
  548. package/actual/regexp/sticky.js +3 -3
  549. package/actual/regexp/test.js +5 -2
  550. package/actual/regexp/to-string.js +1 -3
  551. package/actual/self.js +4 -2
  552. package/actual/set/constructor.js +18 -0
  553. package/actual/set/difference.js +9 -3
  554. package/actual/set/index.js +16 -9
  555. package/actual/set/intersection.js +9 -3
  556. package/actual/set/is-disjoint-from.js +9 -3
  557. package/actual/set/is-subset-of.js +9 -3
  558. package/actual/set/is-superset-of.js +9 -3
  559. package/actual/set/prototype/difference.js +11 -0
  560. package/actual/set/prototype/intersection.js +11 -0
  561. package/actual/set/prototype/is-disjoint-from.js +11 -0
  562. package/actual/set/prototype/is-subset-of.js +11 -0
  563. package/actual/set/prototype/is-superset-of.js +11 -0
  564. package/actual/set/prototype/symmetric-difference.js +11 -0
  565. package/actual/set/prototype/union.js +11 -0
  566. package/actual/set/symmetric-difference.js +9 -3
  567. package/actual/set/union.js +9 -3
  568. package/actual/set-immediate.js +4 -2
  569. package/actual/string/anchor.js +4 -2
  570. package/actual/string/at.js +4 -2
  571. package/actual/string/big.js +4 -2
  572. package/actual/string/blink.js +4 -2
  573. package/actual/string/bold.js +4 -2
  574. package/actual/string/code-point-at.js +4 -2
  575. package/actual/string/ends-with.js +4 -2
  576. package/actual/string/fixed.js +4 -2
  577. package/actual/string/fontcolor.js +4 -2
  578. package/actual/string/fontsize.js +4 -2
  579. package/actual/string/from-code-point.js +4 -2
  580. package/actual/string/includes.js +4 -2
  581. package/actual/string/index.js +41 -5
  582. package/actual/string/instance/anchor.js +12 -0
  583. package/actual/string/instance/at.js +12 -0
  584. package/actual/string/instance/big.js +12 -0
  585. package/actual/string/instance/blink.js +12 -0
  586. package/actual/string/instance/bold.js +12 -0
  587. package/actual/string/instance/code-point-at.js +12 -0
  588. package/actual/string/instance/ends-with.js +12 -0
  589. package/actual/string/instance/fixed.js +12 -0
  590. package/actual/string/instance/fontcolor.js +12 -0
  591. package/actual/string/instance/fontsize.js +12 -0
  592. package/actual/string/instance/includes.js +12 -0
  593. package/actual/string/instance/is-well-formed.js +12 -0
  594. package/actual/string/instance/italics.js +12 -0
  595. package/actual/string/instance/link.js +12 -0
  596. package/actual/string/instance/match-all.js +12 -0
  597. package/actual/string/instance/pad-end.js +12 -0
  598. package/actual/string/instance/pad-start.js +12 -0
  599. package/actual/string/instance/repeat.js +12 -0
  600. package/actual/string/instance/replace-all.js +12 -0
  601. package/actual/string/instance/small.js +12 -0
  602. package/actual/string/instance/starts-with.js +12 -0
  603. package/actual/string/instance/strike.js +12 -0
  604. package/actual/string/instance/sub.js +12 -0
  605. package/actual/string/instance/sup.js +12 -0
  606. package/actual/string/instance/to-well-formed.js +12 -0
  607. package/actual/string/instance/trim-end.js +12 -0
  608. package/actual/string/instance/trim-left.js +12 -0
  609. package/actual/string/instance/trim-right.js +12 -0
  610. package/actual/string/instance/trim-start.js +12 -0
  611. package/actual/string/instance/trim.js +12 -0
  612. package/actual/string/is-well-formed.js +3 -4
  613. package/actual/string/italics.js +4 -2
  614. package/actual/string/iterator.js +6 -2
  615. package/actual/string/link.js +4 -2
  616. package/actual/string/match-all.js +6 -2
  617. package/actual/string/match.js +2 -3
  618. package/actual/string/pad-end.js +5 -2
  619. package/actual/string/pad-start.js +5 -2
  620. package/actual/string/prototype/anchor.js +6 -0
  621. package/actual/string/prototype/at.js +6 -0
  622. package/actual/string/prototype/big.js +6 -0
  623. package/actual/string/prototype/blink.js +6 -0
  624. package/actual/string/prototype/bold.js +6 -0
  625. package/actual/string/prototype/code-point-at.js +6 -0
  626. package/actual/string/prototype/ends-with.js +6 -0
  627. package/actual/string/prototype/fixed.js +6 -0
  628. package/actual/string/prototype/fontcolor.js +6 -0
  629. package/actual/string/prototype/fontsize.js +6 -0
  630. package/actual/string/prototype/includes.js +6 -0
  631. package/actual/string/prototype/is-well-formed.js +6 -0
  632. package/actual/string/prototype/italics.js +6 -0
  633. package/actual/string/prototype/iterator.js +7 -0
  634. package/actual/string/prototype/link.js +6 -0
  635. package/actual/string/prototype/match-all.js +8 -0
  636. package/actual/string/prototype/pad-end.js +7 -0
  637. package/actual/string/prototype/pad-start.js +7 -0
  638. package/actual/string/prototype/repeat.js +6 -0
  639. package/actual/string/prototype/replace-all.js +8 -0
  640. package/actual/string/prototype/small.js +6 -0
  641. package/actual/string/prototype/starts-with.js +6 -0
  642. package/actual/string/prototype/strike.js +6 -0
  643. package/actual/string/prototype/sub.js +6 -0
  644. package/actual/string/prototype/sup.js +6 -0
  645. package/actual/string/prototype/to-well-formed.js +6 -0
  646. package/actual/string/prototype/trim-end.js +6 -0
  647. package/actual/string/prototype/trim-left.js +6 -0
  648. package/actual/string/prototype/trim-right.js +6 -0
  649. package/actual/string/prototype/trim-start.js +6 -0
  650. package/actual/string/prototype/trim.js +6 -0
  651. package/actual/string/raw.js +4 -2
  652. package/actual/string/repeat.js +4 -2
  653. package/actual/string/replace-all.js +6 -2
  654. package/actual/string/replace.js +2 -3
  655. package/actual/string/search.js +2 -3
  656. package/actual/string/small.js +4 -2
  657. package/actual/string/split.js +2 -3
  658. package/actual/string/starts-with.js +4 -2
  659. package/actual/string/strike.js +4 -2
  660. package/actual/string/sub.js +4 -2
  661. package/actual/string/sup.js +4 -2
  662. package/actual/string/to-well-formed.js +3 -4
  663. package/actual/string/trim-end.js +4 -2
  664. package/actual/string/trim-left.js +4 -2
  665. package/actual/string/trim-right.js +4 -2
  666. package/actual/string/trim-start.js +4 -2
  667. package/actual/string/trim.js +4 -2
  668. package/actual/structured-clone.js +13 -2
  669. package/actual/suppressed-error/constructor.js +6 -0
  670. package/actual/suppressed-error/index.js +7 -0
  671. package/actual/suppressed-error/is-error.js +6 -0
  672. package/actual/symbol/async-dispose.js +10 -3
  673. package/actual/symbol/async-iterator.js +4 -2
  674. package/actual/symbol/constructor.js +8 -0
  675. package/actual/symbol/description.js +1 -3
  676. package/actual/symbol/dispose.js +5 -3
  677. package/actual/symbol/for.js +7 -2
  678. package/actual/symbol/has-instance.js +5 -2
  679. package/actual/symbol/index.js +23 -6
  680. package/actual/symbol/is-concat-spreadable.js +4 -2
  681. package/actual/symbol/iterator.js +8 -2
  682. package/actual/symbol/key-for.js +4 -2
  683. package/actual/symbol/match-all.js +4 -2
  684. package/actual/symbol/match.js +4 -2
  685. package/actual/symbol/metadata.js +3 -2
  686. package/actual/symbol/replace.js +4 -2
  687. package/actual/symbol/search.js +4 -2
  688. package/actual/symbol/species.js +4 -2
  689. package/actual/symbol/split.js +4 -2
  690. package/actual/symbol/to-primitive.js +5 -2
  691. package/actual/symbol/to-string-tag.js +7 -2
  692. package/actual/symbol/unscopables.js +4 -2
  693. package/actual/syntax-error/constructor.js +6 -0
  694. package/actual/syntax-error/index.js +7 -0
  695. package/actual/syntax-error/is-error.js +6 -0
  696. package/actual/type-error/constructor.js +6 -0
  697. package/actual/type-error/index.js +7 -0
  698. package/actual/type-error/is-error.js +6 -0
  699. package/actual/typed-array/at.js +1 -3
  700. package/actual/typed-array/constructors.js +18 -0
  701. package/actual/typed-array/copy-within.js +1 -3
  702. package/actual/typed-array/entries.js +3 -3
  703. package/actual/typed-array/every.js +1 -3
  704. package/actual/typed-array/fill.js +1 -3
  705. package/actual/typed-array/filter.js +1 -3
  706. package/actual/typed-array/find-index.js +1 -3
  707. package/actual/typed-array/find-last-index.js +1 -4
  708. package/actual/typed-array/find-last.js +1 -4
  709. package/actual/typed-array/find.js +1 -3
  710. package/actual/typed-array/for-each.js +1 -3
  711. package/actual/typed-array/from-base64.js +43 -4
  712. package/actual/typed-array/from-hex.js +43 -4
  713. package/actual/typed-array/from.js +45 -3
  714. package/actual/typed-array/includes.js +1 -3
  715. package/actual/typed-array/index-of.js +1 -3
  716. package/actual/typed-array/index.js +60 -15
  717. package/actual/typed-array/iterator.js +3 -3
  718. package/actual/typed-array/join.js +1 -3
  719. package/actual/typed-array/keys.js +3 -3
  720. package/actual/typed-array/last-index-of.js +1 -3
  721. package/actual/typed-array/map.js +1 -3
  722. package/actual/typed-array/methods.js +48 -16
  723. package/actual/typed-array/of.js +43 -3
  724. package/actual/typed-array/reduce-right.js +1 -3
  725. package/actual/typed-array/reduce.js +1 -3
  726. package/actual/typed-array/reverse.js +1 -3
  727. package/actual/typed-array/set-from-base64.js +1 -4
  728. package/actual/typed-array/set-from-hex.js +1 -4
  729. package/actual/typed-array/set.js +1 -3
  730. package/actual/typed-array/slice.js +1 -3
  731. package/actual/typed-array/some.js +1 -3
  732. package/actual/typed-array/sort.js +1 -3
  733. package/actual/typed-array/subarray.js +1 -3
  734. package/actual/typed-array/to-base64.js +1 -4
  735. package/actual/typed-array/to-hex.js +1 -4
  736. package/actual/typed-array/to-locale-string.js +1 -3
  737. package/actual/typed-array/to-reversed.js +1 -5
  738. package/actual/typed-array/to-sorted.js +1 -5
  739. package/actual/typed-array/to-string.js +1 -3
  740. package/actual/typed-array/values.js +4 -3
  741. package/actual/typed-array/with.js +1 -5
  742. package/actual/uint16-array/at.js +2 -0
  743. package/actual/uint16-array/constructor.js +46 -0
  744. package/actual/uint16-array/copy-within.js +2 -0
  745. package/actual/uint16-array/entries.js +4 -0
  746. package/actual/uint16-array/every.js +2 -0
  747. package/actual/uint16-array/fill.js +2 -0
  748. package/actual/uint16-array/filter.js +2 -0
  749. package/actual/uint16-array/find-index.js +2 -0
  750. package/actual/uint16-array/find-last-index.js +2 -0
  751. package/actual/uint16-array/find-last.js +2 -0
  752. package/actual/uint16-array/find.js +2 -0
  753. package/actual/uint16-array/for-each.js +2 -0
  754. package/actual/uint16-array/from.js +42 -0
  755. package/actual/uint16-array/includes.js +2 -0
  756. package/actual/uint16-array/index-of.js +2 -0
  757. package/actual/uint16-array/index.js +48 -0
  758. package/actual/uint16-array/iterator.js +4 -0
  759. package/actual/uint16-array/join.js +2 -0
  760. package/actual/uint16-array/keys.js +4 -0
  761. package/actual/uint16-array/last-index-of.js +2 -0
  762. package/actual/uint16-array/map.js +2 -0
  763. package/actual/uint16-array/of.js +40 -0
  764. package/actual/uint16-array/reduce-right.js +2 -0
  765. package/actual/uint16-array/reduce.js +2 -0
  766. package/actual/uint16-array/reverse.js +2 -0
  767. package/actual/uint16-array/set.js +2 -0
  768. package/actual/uint16-array/slice.js +2 -0
  769. package/actual/uint16-array/some.js +2 -0
  770. package/actual/uint16-array/sort.js +2 -0
  771. package/actual/uint16-array/subarray.js +2 -0
  772. package/actual/uint16-array/to-locale-string.js +2 -0
  773. package/actual/uint16-array/to-reversed.js +2 -0
  774. package/actual/uint16-array/to-sorted.js +2 -0
  775. package/actual/uint16-array/to-string.js +2 -0
  776. package/actual/uint16-array/values.js +5 -0
  777. package/actual/uint16-array/with.js +2 -0
  778. package/actual/uint32-array/at.js +2 -0
  779. package/actual/uint32-array/constructor.js +46 -0
  780. package/actual/uint32-array/copy-within.js +2 -0
  781. package/actual/uint32-array/entries.js +4 -0
  782. package/actual/uint32-array/every.js +2 -0
  783. package/actual/uint32-array/fill.js +2 -0
  784. package/actual/uint32-array/filter.js +2 -0
  785. package/actual/uint32-array/find-index.js +2 -0
  786. package/actual/uint32-array/find-last-index.js +2 -0
  787. package/actual/uint32-array/find-last.js +2 -0
  788. package/actual/uint32-array/find.js +2 -0
  789. package/actual/uint32-array/for-each.js +2 -0
  790. package/actual/uint32-array/from.js +42 -0
  791. package/actual/uint32-array/includes.js +2 -0
  792. package/actual/uint32-array/index-of.js +2 -0
  793. package/actual/uint32-array/index.js +48 -0
  794. package/actual/uint32-array/iterator.js +4 -0
  795. package/actual/uint32-array/join.js +2 -0
  796. package/actual/uint32-array/keys.js +4 -0
  797. package/actual/uint32-array/last-index-of.js +2 -0
  798. package/actual/uint32-array/map.js +2 -0
  799. package/actual/uint32-array/of.js +40 -0
  800. package/actual/uint32-array/reduce-right.js +2 -0
  801. package/actual/uint32-array/reduce.js +2 -0
  802. package/actual/uint32-array/reverse.js +2 -0
  803. package/actual/uint32-array/set.js +2 -0
  804. package/actual/uint32-array/slice.js +2 -0
  805. package/actual/uint32-array/some.js +2 -0
  806. package/actual/uint32-array/sort.js +2 -0
  807. package/actual/uint32-array/subarray.js +2 -0
  808. package/actual/uint32-array/to-locale-string.js +2 -0
  809. package/actual/uint32-array/to-reversed.js +2 -0
  810. package/actual/uint32-array/to-sorted.js +2 -0
  811. package/actual/uint32-array/to-string.js +2 -0
  812. package/actual/uint32-array/values.js +5 -0
  813. package/actual/uint32-array/with.js +2 -0
  814. package/actual/uint8-array/at.js +2 -0
  815. package/actual/uint8-array/constructor.js +50 -0
  816. package/actual/uint8-array/copy-within.js +2 -0
  817. package/actual/uint8-array/entries.js +4 -0
  818. package/actual/uint8-array/every.js +2 -0
  819. package/actual/uint8-array/fill.js +2 -0
  820. package/actual/uint8-array/filter.js +2 -0
  821. package/actual/uint8-array/find-index.js +2 -0
  822. package/actual/uint8-array/find-last-index.js +2 -0
  823. package/actual/uint8-array/find-last.js +2 -0
  824. package/actual/uint8-array/find.js +2 -0
  825. package/actual/uint8-array/for-each.js +2 -0
  826. package/actual/uint8-array/from-base64.js +44 -0
  827. package/actual/uint8-array/from-hex.js +44 -0
  828. package/actual/uint8-array/from.js +46 -0
  829. package/actual/uint8-array/includes.js +2 -0
  830. package/actual/uint8-array/index-of.js +2 -0
  831. package/actual/uint8-array/index.js +54 -0
  832. package/actual/uint8-array/iterator.js +4 -0
  833. package/actual/uint8-array/join.js +2 -0
  834. package/actual/uint8-array/keys.js +4 -0
  835. package/actual/uint8-array/last-index-of.js +2 -0
  836. package/actual/uint8-array/map.js +2 -0
  837. package/actual/uint8-array/of.js +44 -0
  838. package/actual/uint8-array/reduce-right.js +2 -0
  839. package/actual/uint8-array/reduce.js +2 -0
  840. package/actual/uint8-array/reverse.js +2 -0
  841. package/actual/uint8-array/set-from-base64.js +2 -0
  842. package/actual/uint8-array/set-from-hex.js +2 -0
  843. package/actual/uint8-array/set.js +2 -0
  844. package/actual/uint8-array/slice.js +2 -0
  845. package/actual/uint8-array/some.js +2 -0
  846. package/actual/uint8-array/sort.js +2 -0
  847. package/actual/uint8-array/subarray.js +2 -0
  848. package/actual/uint8-array/to-base64.js +2 -0
  849. package/actual/uint8-array/to-hex.js +2 -0
  850. package/actual/uint8-array/to-locale-string.js +2 -0
  851. package/actual/uint8-array/to-reversed.js +2 -0
  852. package/actual/uint8-array/to-sorted.js +2 -0
  853. package/actual/uint8-array/to-string.js +2 -0
  854. package/actual/uint8-array/values.js +5 -0
  855. package/actual/uint8-array/with.js +2 -0
  856. package/actual/uint8-clamped-array/at.js +2 -0
  857. package/actual/uint8-clamped-array/constructor.js +46 -0
  858. package/actual/uint8-clamped-array/copy-within.js +2 -0
  859. package/actual/uint8-clamped-array/entries.js +4 -0
  860. package/actual/uint8-clamped-array/every.js +2 -0
  861. package/actual/uint8-clamped-array/fill.js +2 -0
  862. package/actual/uint8-clamped-array/filter.js +2 -0
  863. package/actual/uint8-clamped-array/find-index.js +2 -0
  864. package/actual/uint8-clamped-array/find-last-index.js +2 -0
  865. package/actual/uint8-clamped-array/find-last.js +2 -0
  866. package/actual/uint8-clamped-array/find.js +2 -0
  867. package/actual/uint8-clamped-array/for-each.js +2 -0
  868. package/actual/uint8-clamped-array/from.js +42 -0
  869. package/actual/uint8-clamped-array/includes.js +2 -0
  870. package/actual/uint8-clamped-array/index-of.js +2 -0
  871. package/actual/uint8-clamped-array/index.js +48 -0
  872. package/actual/uint8-clamped-array/iterator.js +4 -0
  873. package/actual/uint8-clamped-array/join.js +2 -0
  874. package/actual/uint8-clamped-array/keys.js +4 -0
  875. package/actual/uint8-clamped-array/last-index-of.js +2 -0
  876. package/actual/uint8-clamped-array/map.js +2 -0
  877. package/actual/uint8-clamped-array/of.js +40 -0
  878. package/actual/uint8-clamped-array/reduce-right.js +2 -0
  879. package/actual/uint8-clamped-array/reduce.js +2 -0
  880. package/actual/uint8-clamped-array/reverse.js +2 -0
  881. package/actual/uint8-clamped-array/set.js +2 -0
  882. package/actual/uint8-clamped-array/slice.js +2 -0
  883. package/actual/uint8-clamped-array/some.js +2 -0
  884. package/actual/uint8-clamped-array/sort.js +2 -0
  885. package/actual/uint8-clamped-array/subarray.js +2 -0
  886. package/actual/uint8-clamped-array/to-locale-string.js +2 -0
  887. package/actual/uint8-clamped-array/to-reversed.js +2 -0
  888. package/actual/uint8-clamped-array/to-sorted.js +2 -0
  889. package/actual/uint8-clamped-array/to-string.js +2 -0
  890. package/actual/uint8-clamped-array/values.js +5 -0
  891. package/actual/uint8-clamped-array/with.js +2 -0
  892. package/actual/uri-error/constructor.js +6 -0
  893. package/actual/uri-error/index.js +7 -0
  894. package/actual/uri-error/is-error.js +6 -0
  895. package/actual/url/can-parse.js +13 -2
  896. package/actual/url/constructor.js +18 -0
  897. package/actual/url/index.js +18 -2
  898. package/actual/url/parse.js +13 -2
  899. package/actual/url/to-json.js +10 -3
  900. package/actual/url-search-params/constructor.js +14 -0
  901. package/actual/url-search-params/index.js +12 -2
  902. package/actual/weak-map/constructor.js +12 -0
  903. package/actual/weak-map/get-or-insert-computed.js +9 -3
  904. package/actual/weak-map/get-or-insert.js +9 -3
  905. package/actual/weak-map/index.js +10 -4
  906. package/actual/weak-map/prototype/get-or-insert-computed.js +11 -0
  907. package/actual/weak-map/prototype/get-or-insert.js +11 -0
  908. package/actual/weak-set/constructor.js +10 -0
  909. package/actual/weak-set/index.js +8 -2
  910. package/configurator.js +0 -11
  911. package/es/aggregate-error/constructor.js +10 -0
  912. package/es/aggregate-error/index.js +11 -0
  913. package/es/aggregate-error/is-error.js +6 -0
  914. package/es/array/at.js +1 -0
  915. package/es/array/concat.js +1 -0
  916. package/es/array/copy-within.js +1 -0
  917. package/es/array/entries.js +2 -1
  918. package/es/array/fill.js +1 -0
  919. package/es/array/filter.js +1 -0
  920. package/es/array/find-index.js +1 -0
  921. package/es/array/find-last-index.js +1 -0
  922. package/es/array/find-last.js +1 -0
  923. package/es/array/find.js +1 -0
  924. package/es/array/flat-map.js +1 -0
  925. package/es/array/flat.js +1 -0
  926. package/es/array/from-async.js +8 -4
  927. package/es/array/from.js +6 -3
  928. package/es/array/includes.js +1 -0
  929. package/es/array/index-of.js +1 -0
  930. package/es/array/index.js +13 -10
  931. package/es/array/instance/at.js +11 -0
  932. package/es/array/instance/concat.js +11 -0
  933. package/es/array/instance/copy-within.js +11 -0
  934. package/es/array/instance/entries.js +11 -0
  935. package/es/array/instance/fill.js +11 -0
  936. package/es/array/instance/filter.js +11 -0
  937. package/es/array/instance/find-index.js +11 -0
  938. package/es/array/instance/find-last-index.js +11 -0
  939. package/es/array/instance/find-last.js +11 -0
  940. package/es/array/instance/find.js +11 -0
  941. package/es/array/instance/flat-map.js +11 -0
  942. package/es/array/instance/flat.js +11 -0
  943. package/es/array/instance/includes.js +11 -0
  944. package/es/array/instance/index-of.js +11 -0
  945. package/es/array/instance/join.js +11 -0
  946. package/es/array/instance/keys.js +11 -0
  947. package/es/array/instance/last-index-of.js +11 -0
  948. package/es/array/instance/map.js +11 -0
  949. package/es/array/instance/push.js +11 -0
  950. package/es/array/instance/reduce-right.js +11 -0
  951. package/es/array/instance/reduce.js +11 -0
  952. package/es/array/instance/reverse.js +11 -0
  953. package/es/array/instance/slice.js +11 -0
  954. package/es/array/instance/sort.js +11 -0
  955. package/es/array/instance/splice.js +11 -0
  956. package/es/array/instance/to-reversed.js +11 -0
  957. package/es/array/instance/to-sorted.js +11 -0
  958. package/es/array/instance/to-spliced.js +11 -0
  959. package/es/array/instance/unshift.js +11 -0
  960. package/es/array/instance/values.js +11 -0
  961. package/es/array/instance/with.js +11 -0
  962. package/es/array/iterator.js +5 -3
  963. package/es/array/join.js +1 -0
  964. package/es/array/keys.js +2 -1
  965. package/es/array/last-index-of.js +1 -0
  966. package/es/array/map.js +1 -0
  967. package/es/array/of.js +3 -2
  968. package/es/array/prototype/at.js +6 -0
  969. package/es/array/prototype/concat.js +6 -0
  970. package/es/array/prototype/copy-within.js +6 -0
  971. package/es/array/prototype/entries.js +7 -0
  972. package/es/array/prototype/fill.js +6 -0
  973. package/es/array/prototype/filter.js +6 -0
  974. package/es/array/prototype/find-index.js +6 -0
  975. package/es/array/prototype/find-last-index.js +6 -0
  976. package/es/array/prototype/find-last.js +6 -0
  977. package/es/array/prototype/find.js +6 -0
  978. package/es/array/prototype/flat-map.js +7 -0
  979. package/es/array/prototype/flat.js +7 -0
  980. package/es/array/prototype/includes.js +6 -0
  981. package/es/array/prototype/index-of.js +6 -0
  982. package/es/array/prototype/iterator.js +7 -0
  983. package/es/array/prototype/join.js +6 -0
  984. package/es/array/prototype/keys.js +7 -0
  985. package/es/array/prototype/last-index-of.js +6 -0
  986. package/es/array/prototype/map.js +6 -0
  987. package/es/array/prototype/push.js +6 -0
  988. package/es/array/prototype/reduce-right.js +6 -0
  989. package/es/array/prototype/reduce.js +6 -0
  990. package/es/array/prototype/reverse.js +6 -0
  991. package/es/array/prototype/slice.js +6 -0
  992. package/es/array/prototype/sort.js +6 -0
  993. package/es/array/prototype/splice.js +6 -0
  994. package/es/array/prototype/to-reversed.js +6 -0
  995. package/es/array/prototype/to-sorted.js +7 -0
  996. package/es/array/prototype/to-spliced.js +6 -0
  997. package/es/array/prototype/unshift.js +6 -0
  998. package/es/array/prototype/values.js +9 -0
  999. package/es/array/prototype/with.js +6 -0
  1000. package/es/array/push.js +1 -0
  1001. package/es/array/reduce-right.js +1 -0
  1002. package/es/array/reduce.js +1 -0
  1003. package/es/array/reverse.js +1 -0
  1004. package/es/array/slice.js +1 -0
  1005. package/es/array/sort.js +1 -0
  1006. package/es/array/splice.js +1 -0
  1007. package/es/array/to-reversed.js +1 -0
  1008. package/es/array/to-sorted.js +1 -0
  1009. package/es/array/to-spliced.js +1 -0
  1010. package/es/array/unshift.js +1 -0
  1011. package/es/array/values.js +4 -1
  1012. package/es/array/with.js +1 -0
  1013. package/es/array-buffer/constructor.js +4 -1
  1014. package/es/array-buffer/detached.js +0 -2
  1015. package/es/array-buffer/index.js +4 -2
  1016. package/es/array-buffer/is-view.js +3 -2
  1017. package/es/array-buffer/transfer-to-fixed-length.js +0 -2
  1018. package/es/array-buffer/transfer.js +0 -2
  1019. package/es/async-disposable-stack/constructor.js +5 -3
  1020. package/es/async-disposable-stack/index.js +5 -3
  1021. package/es/async-iterator/index.js +8 -1
  1022. package/es/data-view/constructor.js +13 -0
  1023. package/es/data-view/index.js +7 -4
  1024. package/es/data-view/set-float16.js +1 -0
  1025. package/es/date/index.js +1 -6
  1026. package/es/date/prototype/to-json.js +6 -0
  1027. package/es/date/to-json.js +1 -0
  1028. package/es/disposable-stack/constructor.js +1 -2
  1029. package/es/disposable-stack/index.js +1 -2
  1030. package/es/error/constructor.js +2 -1
  1031. package/es/error/index.js +2 -2
  1032. package/es/error/is-error.js +3 -3
  1033. package/es/eval-error/constructor.js +6 -0
  1034. package/es/eval-error/index.js +7 -0
  1035. package/es/eval-error/is-error.js +6 -0
  1036. package/es/float32-array/at.js +2 -0
  1037. package/es/float32-array/constructor.js +45 -0
  1038. package/es/float32-array/copy-within.js +2 -0
  1039. package/es/float32-array/entries.js +4 -0
  1040. package/es/float32-array/every.js +2 -0
  1041. package/es/float32-array/fill.js +2 -0
  1042. package/es/float32-array/filter.js +2 -0
  1043. package/es/float32-array/find-index.js +2 -0
  1044. package/es/float32-array/find-last-index.js +2 -0
  1045. package/es/float32-array/find-last.js +2 -0
  1046. package/es/float32-array/find.js +2 -0
  1047. package/es/float32-array/for-each.js +2 -0
  1048. package/es/float32-array/from.js +41 -0
  1049. package/es/float32-array/includes.js +2 -0
  1050. package/es/float32-array/index-of.js +2 -0
  1051. package/es/float32-array/index.js +47 -0
  1052. package/es/float32-array/iterator.js +4 -0
  1053. package/es/float32-array/join.js +2 -0
  1054. package/es/float32-array/keys.js +4 -0
  1055. package/es/float32-array/last-index-of.js +2 -0
  1056. package/es/float32-array/map.js +2 -0
  1057. package/es/float32-array/of.js +40 -0
  1058. package/es/float32-array/reduce-right.js +2 -0
  1059. package/es/float32-array/reduce.js +2 -0
  1060. package/es/float32-array/reverse.js +2 -0
  1061. package/es/float32-array/set.js +2 -0
  1062. package/es/float32-array/slice.js +2 -0
  1063. package/es/float32-array/some.js +2 -0
  1064. package/es/float32-array/sort.js +2 -0
  1065. package/es/float32-array/subarray.js +2 -0
  1066. package/es/float32-array/to-locale-string.js +2 -0
  1067. package/es/float32-array/to-reversed.js +2 -0
  1068. package/es/float32-array/to-sorted.js +2 -0
  1069. package/es/float32-array/to-string.js +2 -0
  1070. package/es/float32-array/values.js +5 -0
  1071. package/es/float32-array/with.js +2 -0
  1072. package/es/float64-array/at.js +2 -0
  1073. package/es/float64-array/constructor.js +45 -0
  1074. package/es/float64-array/copy-within.js +2 -0
  1075. package/es/float64-array/entries.js +4 -0
  1076. package/es/float64-array/every.js +2 -0
  1077. package/es/float64-array/fill.js +2 -0
  1078. package/es/float64-array/filter.js +2 -0
  1079. package/es/float64-array/find-index.js +2 -0
  1080. package/es/float64-array/find-last-index.js +2 -0
  1081. package/es/float64-array/find-last.js +2 -0
  1082. package/es/float64-array/find.js +2 -0
  1083. package/es/float64-array/for-each.js +2 -0
  1084. package/es/float64-array/from.js +41 -0
  1085. package/es/float64-array/includes.js +2 -0
  1086. package/es/float64-array/index-of.js +2 -0
  1087. package/es/float64-array/index.js +47 -0
  1088. package/es/float64-array/iterator.js +4 -0
  1089. package/es/float64-array/join.js +2 -0
  1090. package/es/float64-array/keys.js +4 -0
  1091. package/es/float64-array/last-index-of.js +2 -0
  1092. package/es/float64-array/map.js +2 -0
  1093. package/es/float64-array/of.js +40 -0
  1094. package/es/float64-array/reduce-right.js +2 -0
  1095. package/es/float64-array/reduce.js +2 -0
  1096. package/es/float64-array/reverse.js +2 -0
  1097. package/es/float64-array/set.js +2 -0
  1098. package/es/float64-array/slice.js +2 -0
  1099. package/es/float64-array/some.js +2 -0
  1100. package/es/float64-array/sort.js +2 -0
  1101. package/es/float64-array/subarray.js +2 -0
  1102. package/es/float64-array/to-locale-string.js +2 -0
  1103. package/es/float64-array/to-reversed.js +2 -0
  1104. package/es/float64-array/to-sorted.js +2 -0
  1105. package/es/float64-array/to-string.js +2 -0
  1106. package/es/float64-array/values.js +5 -0
  1107. package/es/float64-array/with.js +2 -0
  1108. package/es/function/index.js +2 -2
  1109. package/es/function/instance/name.js +9 -0
  1110. package/es/function/name.js +4 -0
  1111. package/es/get-iterator-method.js +4 -2
  1112. package/es/get-iterator.js +4 -2
  1113. package/es/global-this.js +3 -1
  1114. package/es/index.js +103 -95
  1115. package/es/instance/at.js +7 -7
  1116. package/es/instance/code-point-at.js +5 -4
  1117. package/es/instance/concat.js +4 -3
  1118. package/es/instance/copy-within.js +4 -3
  1119. package/es/instance/ends-with.js +5 -4
  1120. package/es/instance/entries.js +4 -3
  1121. package/es/instance/fill.js +4 -3
  1122. package/es/instance/filter.js +4 -3
  1123. package/es/instance/find-index.js +4 -3
  1124. package/es/instance/find-last-index.js +4 -3
  1125. package/es/instance/find-last.js +4 -3
  1126. package/es/instance/find.js +4 -3
  1127. package/es/instance/flags.js +2 -0
  1128. package/es/instance/flat-map.js +4 -3
  1129. package/es/instance/flat.js +4 -3
  1130. package/es/instance/includes.js +7 -7
  1131. package/es/instance/index-of.js +4 -3
  1132. package/es/instance/is-well-formed.js +5 -4
  1133. package/es/instance/join.js +11 -0
  1134. package/es/instance/keys.js +4 -3
  1135. package/es/instance/last-index-of.js +4 -3
  1136. package/es/instance/map.js +4 -3
  1137. package/es/instance/match-all.js +5 -4
  1138. package/es/instance/name.js +9 -0
  1139. package/es/instance/pad-end.js +5 -4
  1140. package/es/instance/pad-start.js +5 -4
  1141. package/es/instance/push.js +4 -3
  1142. package/es/instance/reduce-right.js +4 -3
  1143. package/es/instance/reduce.js +4 -3
  1144. package/es/instance/repeat.js +5 -4
  1145. package/es/instance/replace-all.js +5 -4
  1146. package/es/instance/reverse.js +4 -3
  1147. package/es/instance/slice.js +4 -3
  1148. package/es/instance/sort.js +4 -3
  1149. package/es/instance/splice.js +4 -3
  1150. package/es/instance/starts-with.js +5 -4
  1151. package/es/instance/to-exponential.js +12 -0
  1152. package/es/instance/to-fixed.js +12 -0
  1153. package/es/instance/to-reversed.js +4 -3
  1154. package/es/instance/to-sorted.js +4 -3
  1155. package/es/instance/to-spliced.js +4 -3
  1156. package/es/instance/to-well-formed.js +5 -4
  1157. package/es/instance/trim-end.js +5 -4
  1158. package/es/instance/trim-left.js +5 -4
  1159. package/es/instance/trim-right.js +5 -4
  1160. package/es/instance/trim-start.js +5 -4
  1161. package/es/instance/trim.js +5 -4
  1162. package/es/instance/unshift.js +4 -3
  1163. package/es/instance/values.js +4 -3
  1164. package/es/instance/with.js +4 -3
  1165. package/es/int16-array/at.js +2 -0
  1166. package/es/int16-array/constructor.js +45 -0
  1167. package/es/int16-array/copy-within.js +2 -0
  1168. package/es/int16-array/entries.js +4 -0
  1169. package/es/int16-array/every.js +2 -0
  1170. package/es/int16-array/fill.js +2 -0
  1171. package/es/int16-array/filter.js +2 -0
  1172. package/es/int16-array/find-index.js +2 -0
  1173. package/es/int16-array/find-last-index.js +2 -0
  1174. package/es/int16-array/find-last.js +2 -0
  1175. package/es/int16-array/find.js +2 -0
  1176. package/es/int16-array/for-each.js +2 -0
  1177. package/es/int16-array/from.js +41 -0
  1178. package/es/int16-array/includes.js +2 -0
  1179. package/es/int16-array/index-of.js +2 -0
  1180. package/es/int16-array/index.js +47 -0
  1181. package/es/int16-array/iterator.js +4 -0
  1182. package/es/int16-array/join.js +2 -0
  1183. package/es/int16-array/keys.js +4 -0
  1184. package/es/int16-array/last-index-of.js +2 -0
  1185. package/es/int16-array/map.js +2 -0
  1186. package/es/int16-array/of.js +40 -0
  1187. package/es/int16-array/reduce-right.js +2 -0
  1188. package/es/int16-array/reduce.js +2 -0
  1189. package/es/int16-array/reverse.js +2 -0
  1190. package/es/int16-array/set.js +2 -0
  1191. package/es/int16-array/slice.js +2 -0
  1192. package/es/int16-array/some.js +2 -0
  1193. package/es/int16-array/sort.js +2 -0
  1194. package/es/int16-array/subarray.js +2 -0
  1195. package/es/int16-array/to-locale-string.js +2 -0
  1196. package/es/int16-array/to-reversed.js +2 -0
  1197. package/es/int16-array/to-sorted.js +2 -0
  1198. package/es/int16-array/to-string.js +2 -0
  1199. package/es/int16-array/values.js +5 -0
  1200. package/es/int16-array/with.js +2 -0
  1201. package/es/int32-array/at.js +2 -0
  1202. package/es/int32-array/constructor.js +45 -0
  1203. package/es/int32-array/copy-within.js +2 -0
  1204. package/es/int32-array/entries.js +4 -0
  1205. package/es/int32-array/every.js +2 -0
  1206. package/es/int32-array/fill.js +2 -0
  1207. package/es/int32-array/filter.js +2 -0
  1208. package/es/int32-array/find-index.js +2 -0
  1209. package/es/int32-array/find-last-index.js +2 -0
  1210. package/es/int32-array/find-last.js +2 -0
  1211. package/es/int32-array/find.js +2 -0
  1212. package/es/int32-array/for-each.js +2 -0
  1213. package/es/int32-array/from.js +41 -0
  1214. package/es/int32-array/includes.js +2 -0
  1215. package/es/int32-array/index-of.js +2 -0
  1216. package/es/int32-array/index.js +47 -0
  1217. package/es/int32-array/iterator.js +4 -0
  1218. package/es/int32-array/join.js +2 -0
  1219. package/es/int32-array/keys.js +4 -0
  1220. package/es/int32-array/last-index-of.js +2 -0
  1221. package/es/int32-array/map.js +2 -0
  1222. package/es/int32-array/of.js +40 -0
  1223. package/es/int32-array/reduce-right.js +2 -0
  1224. package/es/int32-array/reduce.js +2 -0
  1225. package/es/int32-array/reverse.js +2 -0
  1226. package/es/int32-array/set.js +2 -0
  1227. package/es/int32-array/slice.js +2 -0
  1228. package/es/int32-array/some.js +2 -0
  1229. package/es/int32-array/sort.js +2 -0
  1230. package/es/int32-array/subarray.js +2 -0
  1231. package/es/int32-array/to-locale-string.js +2 -0
  1232. package/es/int32-array/to-reversed.js +2 -0
  1233. package/es/int32-array/to-sorted.js +2 -0
  1234. package/es/int32-array/to-string.js +2 -0
  1235. package/es/int32-array/values.js +5 -0
  1236. package/es/int32-array/with.js +2 -0
  1237. package/es/int8-array/at.js +2 -0
  1238. package/es/int8-array/constructor.js +45 -0
  1239. package/es/int8-array/copy-within.js +2 -0
  1240. package/es/int8-array/entries.js +4 -0
  1241. package/es/int8-array/every.js +2 -0
  1242. package/es/int8-array/fill.js +2 -0
  1243. package/es/int8-array/filter.js +2 -0
  1244. package/es/int8-array/find-index.js +2 -0
  1245. package/es/int8-array/find-last-index.js +2 -0
  1246. package/es/int8-array/find-last.js +2 -0
  1247. package/es/int8-array/find.js +2 -0
  1248. package/es/int8-array/for-each.js +2 -0
  1249. package/es/int8-array/from.js +41 -0
  1250. package/es/int8-array/includes.js +2 -0
  1251. package/es/int8-array/index-of.js +2 -0
  1252. package/es/int8-array/index.js +47 -0
  1253. package/es/int8-array/iterator.js +4 -0
  1254. package/es/int8-array/join.js +2 -0
  1255. package/es/int8-array/keys.js +4 -0
  1256. package/es/int8-array/last-index-of.js +2 -0
  1257. package/es/int8-array/map.js +2 -0
  1258. package/es/int8-array/of.js +40 -0
  1259. package/es/int8-array/reduce-right.js +2 -0
  1260. package/es/int8-array/reduce.js +2 -0
  1261. package/es/int8-array/reverse.js +2 -0
  1262. package/es/int8-array/set.js +2 -0
  1263. package/es/int8-array/slice.js +2 -0
  1264. package/es/int8-array/some.js +2 -0
  1265. package/es/int8-array/sort.js +2 -0
  1266. package/es/int8-array/subarray.js +2 -0
  1267. package/es/int8-array/to-locale-string.js +2 -0
  1268. package/es/int8-array/to-reversed.js +2 -0
  1269. package/es/int8-array/to-sorted.js +2 -0
  1270. package/es/int8-array/to-string.js +2 -0
  1271. package/es/int8-array/values.js +5 -0
  1272. package/es/int8-array/with.js +2 -0
  1273. package/es/is-iterable.js +4 -2
  1274. package/es/iterator/concat.js +7 -6
  1275. package/es/iterator/constructor.js +21 -0
  1276. package/es/iterator/every.js +2 -0
  1277. package/es/iterator/find.js +2 -0
  1278. package/es/iterator/flat-map.js +2 -1
  1279. package/es/iterator/for-each.js +2 -0
  1280. package/es/iterator/from.js +5 -4
  1281. package/es/iterator/index.js +2 -2
  1282. package/es/iterator/prototype/drop.js +8 -0
  1283. package/es/iterator/prototype/every.js +10 -0
  1284. package/es/iterator/prototype/filter.js +8 -0
  1285. package/es/iterator/prototype/find.js +10 -0
  1286. package/es/iterator/prototype/flat-map.js +10 -0
  1287. package/es/iterator/prototype/for-each.js +10 -0
  1288. package/es/iterator/prototype/map.js +8 -0
  1289. package/es/iterator/prototype/reduce.js +10 -0
  1290. package/es/iterator/prototype/some.js +10 -0
  1291. package/es/iterator/prototype/take.js +8 -0
  1292. package/es/iterator/prototype/to-array.js +10 -0
  1293. package/es/iterator/reduce.js +2 -0
  1294. package/es/iterator/some.js +2 -0
  1295. package/es/iterator/to-array.js +2 -0
  1296. package/es/json/index.js +3 -5
  1297. package/es/json/is-raw-json.js +3 -2
  1298. package/es/json/parse.js +3 -3
  1299. package/es/json/raw-json.js +3 -4
  1300. package/es/json/stringify.js +2 -8
  1301. package/es/map/constructor.js +12 -0
  1302. package/es/map/get-or-insert-computed.js +5 -1
  1303. package/es/map/get-or-insert.js +5 -1
  1304. package/es/map/group-by.js +7 -3
  1305. package/es/map/index.js +4 -2
  1306. package/es/map/prototype/get-or-insert-computed.js +10 -0
  1307. package/es/map/prototype/get-or-insert.js +10 -0
  1308. package/es/math/acosh.js +3 -2
  1309. package/es/math/asinh.js +3 -2
  1310. package/es/math/atanh.js +3 -2
  1311. package/es/math/cbrt.js +3 -2
  1312. package/es/math/clz32.js +3 -2
  1313. package/es/math/cosh.js +3 -2
  1314. package/es/math/expm1.js +3 -2
  1315. package/es/math/f16round.js +3 -2
  1316. package/es/math/fround.js +3 -2
  1317. package/es/math/hypot.js +3 -2
  1318. package/es/math/imul.js +3 -2
  1319. package/es/math/index.js +4 -1
  1320. package/es/math/log10.js +3 -2
  1321. package/es/math/log1p.js +3 -2
  1322. package/es/math/log2.js +3 -2
  1323. package/es/math/sign.js +3 -2
  1324. package/es/math/sinh.js +3 -2
  1325. package/es/math/sum-precise.js +5 -2
  1326. package/es/math/tanh.js +3 -2
  1327. package/es/math/trunc.js +3 -2
  1328. package/es/number/constructor.js +1 -0
  1329. package/es/number/epsilon.js +3 -1
  1330. package/es/number/index.js +4 -1
  1331. package/es/number/instance/to-exponential.js +12 -0
  1332. package/es/number/instance/to-fixed.js +12 -0
  1333. package/es/number/is-finite.js +3 -2
  1334. package/es/number/is-integer.js +3 -2
  1335. package/es/number/is-nan.js +3 -2
  1336. package/es/number/is-safe-integer.js +3 -2
  1337. package/es/number/max-safe-integer.js +3 -1
  1338. package/es/number/min-safe-integer.js +3 -1
  1339. package/es/number/parse-float.js +4 -2
  1340. package/es/number/parse-int.js +4 -2
  1341. package/es/number/prototype/to-exponential.js +7 -0
  1342. package/es/number/prototype/to-fixed.js +7 -0
  1343. package/es/number/to-exponential.js +2 -0
  1344. package/es/number/to-fixed.js +2 -0
  1345. package/es/object/assign.js +3 -2
  1346. package/es/object/create.js +4 -6
  1347. package/es/object/define-getter.js +1 -0
  1348. package/es/object/define-properties.js +4 -8
  1349. package/es/object/define-property.js +4 -8
  1350. package/es/object/define-setter.js +1 -0
  1351. package/es/object/entries.js +3 -2
  1352. package/es/object/freeze.js +3 -2
  1353. package/es/object/from-entries.js +6 -3
  1354. package/es/object/get-own-property-descriptor.js +4 -6
  1355. package/es/object/get-own-property-descriptors.js +3 -2
  1356. package/es/object/get-own-property-names.js +4 -4
  1357. package/es/object/get-own-property-symbols.js +4 -3
  1358. package/es/object/get-prototype-of.js +3 -2
  1359. package/es/object/group-by.js +5 -3
  1360. package/es/object/has-own.js +3 -2
  1361. package/es/object/index.js +9 -12
  1362. package/es/object/is-extensible.js +3 -2
  1363. package/es/object/is-frozen.js +3 -2
  1364. package/es/object/is-sealed.js +3 -2
  1365. package/es/object/is.js +3 -2
  1366. package/es/object/keys.js +3 -2
  1367. package/es/object/lookup-getter.js +1 -0
  1368. package/es/object/lookup-setter.js +1 -0
  1369. package/es/object/prevent-extensions.js +3 -2
  1370. package/es/object/prototype/define-getter.js +6 -0
  1371. package/es/object/prototype/define-setter.js +6 -0
  1372. package/es/object/prototype/lookup-getter.js +6 -0
  1373. package/es/object/prototype/lookup-setter.js +6 -0
  1374. package/es/object/prototype/to-string.js +6 -0
  1375. package/es/object/seal.js +3 -2
  1376. package/es/object/set-prototype-of.js +3 -2
  1377. package/es/object/to-string.js +3 -7
  1378. package/es/object/values.js +3 -2
  1379. package/es/parse-float.js +1 -0
  1380. package/es/parse-int.js +1 -0
  1381. package/es/promise/all-settled.js +12 -8
  1382. package/es/promise/all.js +20 -0
  1383. package/es/promise/any.js +13 -9
  1384. package/es/promise/catch.js +8 -0
  1385. package/es/promise/constructor.js +9 -0
  1386. package/es/promise/finally.js +2 -1
  1387. package/es/promise/index.js +10 -4
  1388. package/es/promise/prototype/catch.js +8 -0
  1389. package/es/promise/prototype/finally.js +8 -0
  1390. package/es/promise/race.js +20 -0
  1391. package/es/promise/reject.js +17 -0
  1392. package/es/promise/resolve.js +17 -0
  1393. package/es/promise/try.js +11 -9
  1394. package/es/promise/with-resolvers.js +10 -6
  1395. package/es/range-error/constructor.js +6 -0
  1396. package/es/range-error/index.js +7 -0
  1397. package/es/range-error/is-error.js +6 -0
  1398. package/es/reference-error/constructor.js +6 -0
  1399. package/es/reference-error/index.js +7 -0
  1400. package/es/reference-error/is-error.js +6 -0
  1401. package/es/reflect/apply.js +3 -2
  1402. package/es/reflect/construct.js +3 -2
  1403. package/es/reflect/define-property.js +3 -2
  1404. package/es/reflect/delete-property.js +3 -2
  1405. package/es/reflect/get-own-property-descriptor.js +3 -2
  1406. package/es/reflect/get-prototype-of.js +3 -2
  1407. package/es/reflect/get.js +3 -2
  1408. package/es/reflect/has.js +3 -2
  1409. package/es/reflect/index.js +1 -0
  1410. package/es/reflect/is-extensible.js +3 -2
  1411. package/es/reflect/own-keys.js +3 -2
  1412. package/es/reflect/prevent-extensions.js +3 -2
  1413. package/es/reflect/set-prototype-of.js +3 -2
  1414. package/es/reflect/set.js +3 -2
  1415. package/es/regexp/constructor.js +0 -2
  1416. package/es/regexp/dot-all.js +0 -4
  1417. package/es/regexp/escape.js +5 -2
  1418. package/es/regexp/exec.js +2 -0
  1419. package/es/regexp/flags.js +3 -2
  1420. package/es/regexp/index.js +3 -1
  1421. package/es/regexp/instance/flags.js +11 -0
  1422. package/es/regexp/match.js +0 -8
  1423. package/es/regexp/replace.js +0 -8
  1424. package/es/regexp/search.js +0 -8
  1425. package/es/regexp/split.js +0 -8
  1426. package/es/regexp/sticky.js +0 -4
  1427. package/es/regexp/test.js +3 -2
  1428. package/es/regexp/to-string.js +0 -3
  1429. package/es/set/constructor.js +17 -0
  1430. package/es/set/difference.js +6 -2
  1431. package/es/set/index.js +11 -9
  1432. package/es/set/intersection.js +6 -2
  1433. package/es/set/is-disjoint-from.js +6 -2
  1434. package/es/set/is-subset-of.js +6 -2
  1435. package/es/set/is-superset-of.js +6 -2
  1436. package/es/set/prototype/difference.js +10 -0
  1437. package/es/set/prototype/intersection.js +10 -0
  1438. package/es/set/prototype/is-disjoint-from.js +10 -0
  1439. package/es/set/prototype/is-subset-of.js +10 -0
  1440. package/es/set/prototype/is-superset-of.js +10 -0
  1441. package/es/set/prototype/symmetric-difference.js +10 -0
  1442. package/es/set/prototype/union.js +10 -0
  1443. package/es/set/symmetric-difference.js +6 -2
  1444. package/es/set/union.js +6 -2
  1445. package/es/string/anchor.js +1 -0
  1446. package/es/string/at.js +2 -1
  1447. package/es/string/big.js +1 -0
  1448. package/es/string/blink.js +1 -0
  1449. package/es/string/bold.js +1 -0
  1450. package/es/string/code-point-at.js +1 -0
  1451. package/es/string/ends-with.js +1 -0
  1452. package/es/string/fixed.js +1 -0
  1453. package/es/string/fontcolor.js +1 -0
  1454. package/es/string/fontsize.js +1 -0
  1455. package/es/string/from-code-point.js +3 -2
  1456. package/es/string/includes.js +1 -0
  1457. package/es/string/index.js +11 -9
  1458. package/es/string/instance/anchor.js +12 -0
  1459. package/es/string/instance/at.js +12 -0
  1460. package/es/string/instance/big.js +12 -0
  1461. package/es/string/instance/blink.js +12 -0
  1462. package/es/string/instance/bold.js +12 -0
  1463. package/es/string/instance/code-point-at.js +12 -0
  1464. package/es/string/instance/ends-with.js +12 -0
  1465. package/es/string/instance/fixed.js +12 -0
  1466. package/es/string/instance/fontcolor.js +12 -0
  1467. package/es/string/instance/fontsize.js +12 -0
  1468. package/es/string/instance/includes.js +12 -0
  1469. package/es/string/instance/is-well-formed.js +12 -0
  1470. package/es/string/instance/italics.js +12 -0
  1471. package/es/string/instance/link.js +12 -0
  1472. package/es/string/instance/match-all.js +12 -0
  1473. package/es/string/instance/pad-end.js +12 -0
  1474. package/es/string/instance/pad-start.js +12 -0
  1475. package/es/string/instance/repeat.js +12 -0
  1476. package/es/string/instance/replace-all.js +12 -0
  1477. package/es/string/instance/small.js +12 -0
  1478. package/es/string/instance/starts-with.js +12 -0
  1479. package/es/string/instance/strike.js +12 -0
  1480. package/es/string/instance/sub.js +12 -0
  1481. package/es/string/instance/sup.js +12 -0
  1482. package/es/string/instance/to-well-formed.js +12 -0
  1483. package/es/string/instance/trim-end.js +12 -0
  1484. package/es/string/instance/trim-left.js +12 -0
  1485. package/es/string/instance/trim-right.js +12 -0
  1486. package/es/string/instance/trim-start.js +12 -0
  1487. package/es/string/instance/trim.js +12 -0
  1488. package/es/string/is-well-formed.js +3 -1
  1489. package/es/string/italics.js +1 -0
  1490. package/es/string/iterator.js +3 -2
  1491. package/es/string/link.js +1 -0
  1492. package/es/string/match-all.js +1 -0
  1493. package/es/string/match.js +0 -3
  1494. package/es/string/pad-end.js +2 -0
  1495. package/es/string/pad-start.js +2 -0
  1496. package/es/string/prototype/anchor.js +6 -0
  1497. package/es/string/prototype/at.js +6 -0
  1498. package/es/string/prototype/big.js +6 -0
  1499. package/es/string/prototype/blink.js +6 -0
  1500. package/es/string/prototype/bold.js +6 -0
  1501. package/es/string/prototype/code-point-at.js +6 -0
  1502. package/es/string/prototype/ends-with.js +6 -0
  1503. package/es/string/prototype/fixed.js +6 -0
  1504. package/es/string/prototype/fontcolor.js +6 -0
  1505. package/es/string/prototype/fontsize.js +6 -0
  1506. package/es/string/prototype/includes.js +6 -0
  1507. package/es/string/prototype/is-well-formed.js +6 -0
  1508. package/es/string/prototype/italics.js +6 -0
  1509. package/es/string/prototype/iterator.js +7 -0
  1510. package/es/string/prototype/link.js +6 -0
  1511. package/es/string/prototype/match-all.js +8 -0
  1512. package/es/string/prototype/pad-end.js +7 -0
  1513. package/es/string/prototype/pad-start.js +7 -0
  1514. package/es/string/prototype/repeat.js +6 -0
  1515. package/es/string/prototype/replace-all.js +8 -0
  1516. package/es/string/prototype/small.js +6 -0
  1517. package/es/string/prototype/starts-with.js +6 -0
  1518. package/es/string/prototype/strike.js +6 -0
  1519. package/es/string/prototype/sub.js +6 -0
  1520. package/es/string/prototype/sup.js +6 -0
  1521. package/es/string/prototype/to-well-formed.js +6 -0
  1522. package/es/string/prototype/trim-end.js +6 -0
  1523. package/es/string/prototype/trim-left.js +6 -0
  1524. package/es/string/prototype/trim-right.js +6 -0
  1525. package/es/string/prototype/trim-start.js +6 -0
  1526. package/es/string/prototype/trim.js +6 -0
  1527. package/es/string/raw.js +3 -2
  1528. package/es/string/repeat.js +1 -0
  1529. package/es/string/replace-all.js +1 -0
  1530. package/es/string/replace.js +0 -3
  1531. package/es/string/search.js +0 -3
  1532. package/es/string/small.js +1 -0
  1533. package/es/string/split.js +0 -3
  1534. package/es/string/starts-with.js +1 -0
  1535. package/es/string/strike.js +1 -0
  1536. package/es/string/sub.js +1 -0
  1537. package/es/string/sup.js +1 -0
  1538. package/es/string/to-well-formed.js +3 -1
  1539. package/es/string/trim-end.js +2 -1
  1540. package/es/string/trim-left.js +2 -1
  1541. package/es/string/trim-right.js +2 -1
  1542. package/es/string/trim-start.js +2 -1
  1543. package/es/string/trim.js +1 -0
  1544. package/es/suppressed-error/constructor.js +6 -0
  1545. package/es/suppressed-error/index.js +7 -0
  1546. package/es/suppressed-error/is-error.js +6 -0
  1547. package/es/symbol/async-dispose.js +9 -2
  1548. package/es/symbol/async-iterator.js +3 -2
  1549. package/es/symbol/constructor.js +8 -0
  1550. package/es/symbol/dispose.js +4 -2
  1551. package/es/symbol/for.js +7 -3
  1552. package/es/symbol/has-instance.js +3 -2
  1553. package/es/symbol/index.js +6 -7
  1554. package/es/symbol/is-concat-spreadable.js +3 -3
  1555. package/es/symbol/iterator.js +5 -4
  1556. package/es/symbol/key-for.js +4 -3
  1557. package/es/symbol/match-all.js +3 -5
  1558. package/es/symbol/match.js +3 -4
  1559. package/es/symbol/replace.js +3 -4
  1560. package/es/symbol/search.js +3 -4
  1561. package/es/symbol/species.js +3 -2
  1562. package/es/symbol/split.js +3 -4
  1563. package/es/symbol/to-primitive.js +4 -3
  1564. package/es/symbol/to-string-tag.js +5 -5
  1565. package/es/symbol/unscopables.js +3 -2
  1566. package/es/syntax-error/constructor.js +6 -0
  1567. package/es/syntax-error/index.js +7 -0
  1568. package/es/syntax-error/is-error.js +6 -0
  1569. package/es/type-error/constructor.js +6 -0
  1570. package/es/type-error/index.js +7 -0
  1571. package/es/type-error/is-error.js +6 -0
  1572. package/es/typed-array/constructors.js +17 -0
  1573. package/es/typed-array/entries.js +2 -1
  1574. package/es/typed-array/from-base64.js +42 -0
  1575. package/es/typed-array/from-hex.js +42 -0
  1576. package/es/typed-array/from.js +43 -0
  1577. package/es/typed-array/index.js +54 -6
  1578. package/es/typed-array/iterator.js +1 -0
  1579. package/es/typed-array/keys.js +2 -1
  1580. package/es/typed-array/methods.js +10 -2
  1581. package/es/typed-array/of.js +42 -0
  1582. package/es/typed-array/to-sorted.js +0 -1
  1583. package/es/typed-array/values.js +2 -0
  1584. package/es/uint16-array/at.js +2 -0
  1585. package/es/uint16-array/constructor.js +45 -0
  1586. package/es/uint16-array/copy-within.js +2 -0
  1587. package/es/uint16-array/entries.js +4 -0
  1588. package/es/uint16-array/every.js +2 -0
  1589. package/es/uint16-array/fill.js +2 -0
  1590. package/es/uint16-array/filter.js +2 -0
  1591. package/es/uint16-array/find-index.js +2 -0
  1592. package/es/uint16-array/find-last-index.js +2 -0
  1593. package/es/uint16-array/find-last.js +2 -0
  1594. package/es/uint16-array/find.js +2 -0
  1595. package/es/uint16-array/for-each.js +2 -0
  1596. package/es/uint16-array/from.js +41 -0
  1597. package/es/uint16-array/includes.js +2 -0
  1598. package/es/uint16-array/index-of.js +2 -0
  1599. package/es/uint16-array/index.js +47 -0
  1600. package/es/uint16-array/iterator.js +4 -0
  1601. package/es/uint16-array/join.js +2 -0
  1602. package/es/uint16-array/keys.js +4 -0
  1603. package/es/uint16-array/last-index-of.js +2 -0
  1604. package/es/uint16-array/map.js +2 -0
  1605. package/es/uint16-array/of.js +40 -0
  1606. package/es/uint16-array/reduce-right.js +2 -0
  1607. package/es/uint16-array/reduce.js +2 -0
  1608. package/es/uint16-array/reverse.js +2 -0
  1609. package/es/uint16-array/set.js +2 -0
  1610. package/es/uint16-array/slice.js +2 -0
  1611. package/es/uint16-array/some.js +2 -0
  1612. package/es/uint16-array/sort.js +2 -0
  1613. package/es/uint16-array/subarray.js +2 -0
  1614. package/es/uint16-array/to-locale-string.js +2 -0
  1615. package/es/uint16-array/to-reversed.js +2 -0
  1616. package/es/uint16-array/to-sorted.js +2 -0
  1617. package/es/uint16-array/to-string.js +2 -0
  1618. package/es/uint16-array/values.js +5 -0
  1619. package/es/uint16-array/with.js +2 -0
  1620. package/es/uint32-array/at.js +2 -0
  1621. package/es/uint32-array/constructor.js +45 -0
  1622. package/es/uint32-array/copy-within.js +2 -0
  1623. package/es/uint32-array/entries.js +4 -0
  1624. package/es/uint32-array/every.js +2 -0
  1625. package/es/uint32-array/fill.js +2 -0
  1626. package/es/uint32-array/filter.js +2 -0
  1627. package/es/uint32-array/find-index.js +2 -0
  1628. package/es/uint32-array/find-last-index.js +2 -0
  1629. package/es/uint32-array/find-last.js +2 -0
  1630. package/es/uint32-array/find.js +2 -0
  1631. package/es/uint32-array/for-each.js +2 -0
  1632. package/es/uint32-array/from.js +41 -0
  1633. package/es/uint32-array/includes.js +2 -0
  1634. package/es/uint32-array/index-of.js +2 -0
  1635. package/es/uint32-array/index.js +47 -0
  1636. package/es/uint32-array/iterator.js +4 -0
  1637. package/es/uint32-array/join.js +2 -0
  1638. package/es/uint32-array/keys.js +4 -0
  1639. package/es/uint32-array/last-index-of.js +2 -0
  1640. package/es/uint32-array/map.js +2 -0
  1641. package/es/uint32-array/of.js +40 -0
  1642. package/es/uint32-array/reduce-right.js +2 -0
  1643. package/es/uint32-array/reduce.js +2 -0
  1644. package/es/uint32-array/reverse.js +2 -0
  1645. package/es/uint32-array/set.js +2 -0
  1646. package/es/uint32-array/slice.js +2 -0
  1647. package/es/uint32-array/some.js +2 -0
  1648. package/es/uint32-array/sort.js +2 -0
  1649. package/es/uint32-array/subarray.js +2 -0
  1650. package/es/uint32-array/to-locale-string.js +2 -0
  1651. package/es/uint32-array/to-reversed.js +2 -0
  1652. package/es/uint32-array/to-sorted.js +2 -0
  1653. package/es/uint32-array/to-string.js +2 -0
  1654. package/es/uint32-array/values.js +5 -0
  1655. package/es/uint32-array/with.js +2 -0
  1656. package/es/uint8-array/at.js +2 -0
  1657. package/es/uint8-array/constructor.js +49 -0
  1658. package/es/uint8-array/copy-within.js +2 -0
  1659. package/es/uint8-array/entries.js +4 -0
  1660. package/es/uint8-array/every.js +2 -0
  1661. package/es/uint8-array/fill.js +2 -0
  1662. package/es/uint8-array/filter.js +2 -0
  1663. package/es/uint8-array/find-index.js +2 -0
  1664. package/es/uint8-array/find-last-index.js +2 -0
  1665. package/es/uint8-array/find-last.js +2 -0
  1666. package/es/uint8-array/find.js +2 -0
  1667. package/es/uint8-array/for-each.js +2 -0
  1668. package/es/uint8-array/from-base64.js +44 -0
  1669. package/es/uint8-array/from-hex.js +44 -0
  1670. package/es/uint8-array/from.js +45 -0
  1671. package/es/uint8-array/includes.js +2 -0
  1672. package/es/uint8-array/index-of.js +2 -0
  1673. package/es/uint8-array/index.js +53 -0
  1674. package/es/uint8-array/iterator.js +4 -0
  1675. package/es/uint8-array/join.js +2 -0
  1676. package/es/uint8-array/keys.js +4 -0
  1677. package/es/uint8-array/last-index-of.js +2 -0
  1678. package/es/uint8-array/map.js +2 -0
  1679. package/es/uint8-array/of.js +44 -0
  1680. package/es/uint8-array/reduce-right.js +2 -0
  1681. package/es/uint8-array/reduce.js +2 -0
  1682. package/es/uint8-array/reverse.js +2 -0
  1683. package/es/uint8-array/set-from-base64.js +2 -0
  1684. package/es/uint8-array/set-from-hex.js +2 -0
  1685. package/es/uint8-array/set.js +2 -0
  1686. package/es/uint8-array/slice.js +2 -0
  1687. package/es/uint8-array/some.js +2 -0
  1688. package/es/uint8-array/sort.js +2 -0
  1689. package/es/uint8-array/subarray.js +2 -0
  1690. package/es/uint8-array/to-base64.js +2 -0
  1691. package/es/uint8-array/to-hex.js +2 -0
  1692. package/es/uint8-array/to-locale-string.js +2 -0
  1693. package/es/uint8-array/to-reversed.js +2 -0
  1694. package/es/uint8-array/to-sorted.js +2 -0
  1695. package/es/uint8-array/to-string.js +2 -0
  1696. package/es/uint8-array/values.js +5 -0
  1697. package/es/uint8-array/with.js +2 -0
  1698. package/es/uint8-clamped-array/at.js +2 -0
  1699. package/es/uint8-clamped-array/constructor.js +45 -0
  1700. package/es/uint8-clamped-array/copy-within.js +2 -0
  1701. package/es/uint8-clamped-array/entries.js +4 -0
  1702. package/es/uint8-clamped-array/every.js +2 -0
  1703. package/es/uint8-clamped-array/fill.js +2 -0
  1704. package/es/uint8-clamped-array/filter.js +2 -0
  1705. package/es/uint8-clamped-array/find-index.js +2 -0
  1706. package/es/uint8-clamped-array/find-last-index.js +2 -0
  1707. package/es/uint8-clamped-array/find-last.js +2 -0
  1708. package/es/uint8-clamped-array/find.js +2 -0
  1709. package/es/uint8-clamped-array/for-each.js +2 -0
  1710. package/es/uint8-clamped-array/from.js +41 -0
  1711. package/es/uint8-clamped-array/includes.js +2 -0
  1712. package/es/uint8-clamped-array/index-of.js +2 -0
  1713. package/es/uint8-clamped-array/index.js +47 -0
  1714. package/es/uint8-clamped-array/iterator.js +4 -0
  1715. package/es/uint8-clamped-array/join.js +2 -0
  1716. package/es/uint8-clamped-array/keys.js +4 -0
  1717. package/es/uint8-clamped-array/last-index-of.js +2 -0
  1718. package/es/uint8-clamped-array/map.js +2 -0
  1719. package/es/uint8-clamped-array/of.js +40 -0
  1720. package/es/uint8-clamped-array/reduce-right.js +2 -0
  1721. package/es/uint8-clamped-array/reduce.js +2 -0
  1722. package/es/uint8-clamped-array/reverse.js +2 -0
  1723. package/es/uint8-clamped-array/set.js +2 -0
  1724. package/es/uint8-clamped-array/slice.js +2 -0
  1725. package/es/uint8-clamped-array/some.js +2 -0
  1726. package/es/uint8-clamped-array/sort.js +2 -0
  1727. package/es/uint8-clamped-array/subarray.js +2 -0
  1728. package/es/uint8-clamped-array/to-locale-string.js +2 -0
  1729. package/es/uint8-clamped-array/to-reversed.js +2 -0
  1730. package/es/uint8-clamped-array/to-sorted.js +2 -0
  1731. package/es/uint8-clamped-array/to-string.js +2 -0
  1732. package/es/uint8-clamped-array/values.js +5 -0
  1733. package/es/uint8-clamped-array/with.js +2 -0
  1734. package/es/uri-error/constructor.js +6 -0
  1735. package/es/uri-error/index.js +7 -0
  1736. package/es/uri-error/is-error.js +6 -0
  1737. package/es/weak-map/constructor.js +11 -0
  1738. package/es/weak-map/get-or-insert-computed.js +5 -1
  1739. package/es/weak-map/get-or-insert.js +5 -1
  1740. package/es/weak-map/index.js +4 -2
  1741. package/es/weak-map/prototype/get-or-insert-computed.js +10 -0
  1742. package/es/weak-map/prototype/get-or-insert.js +10 -0
  1743. package/es/weak-set/constructor.js +9 -0
  1744. package/es/weak-set/index.js +4 -2
  1745. package/full/aggregate-error/constructor.js +11 -0
  1746. package/full/aggregate-error/index.js +12 -0
  1747. package/full/aggregate-error/is-error.js +6 -0
  1748. package/full/array/at.js +3 -4
  1749. package/full/array/concat.js +4 -2
  1750. package/full/array/copy-within.js +4 -2
  1751. package/full/array/entries.js +5 -2
  1752. package/full/array/fill.js +4 -2
  1753. package/full/array/filter-reject.js +1 -0
  1754. package/full/array/filter.js +4 -2
  1755. package/full/array/find-index.js +4 -2
  1756. package/full/array/find-last-index.js +4 -2
  1757. package/full/array/find-last.js +4 -2
  1758. package/full/array/find.js +4 -2
  1759. package/full/array/flat-map.js +5 -2
  1760. package/full/array/flat.js +5 -2
  1761. package/full/array/from-async.js +12 -2
  1762. package/full/array/from.js +8 -2
  1763. package/full/array/includes.js +4 -2
  1764. package/full/array/index-of.js +4 -2
  1765. package/full/array/index.js +49 -9
  1766. package/full/array/instance/at.js +11 -0
  1767. package/full/array/instance/concat.js +11 -0
  1768. package/full/array/instance/copy-within.js +11 -0
  1769. package/full/array/instance/entries.js +11 -0
  1770. package/full/array/instance/fill.js +11 -0
  1771. package/full/array/instance/filter-reject.js +11 -0
  1772. package/full/array/instance/filter.js +11 -0
  1773. package/full/array/instance/find-index.js +11 -0
  1774. package/full/array/instance/find-last-index.js +11 -0
  1775. package/full/array/instance/find-last.js +11 -0
  1776. package/full/array/instance/find.js +11 -0
  1777. package/full/array/instance/flat-map.js +11 -0
  1778. package/full/array/instance/flat.js +11 -0
  1779. package/full/array/instance/includes.js +11 -0
  1780. package/full/array/instance/index-of.js +11 -0
  1781. package/full/array/instance/join.js +11 -0
  1782. package/full/array/instance/keys.js +11 -0
  1783. package/full/array/instance/last-index-of.js +11 -0
  1784. package/full/array/instance/map.js +11 -0
  1785. package/full/array/instance/push.js +11 -0
  1786. package/full/array/instance/reduce-right.js +11 -0
  1787. package/full/array/instance/reduce.js +11 -0
  1788. package/full/array/instance/reverse.js +11 -0
  1789. package/full/array/instance/slice.js +11 -0
  1790. package/full/array/instance/sort.js +11 -0
  1791. package/full/array/instance/splice.js +11 -0
  1792. package/full/array/instance/to-reversed.js +11 -0
  1793. package/full/array/instance/to-sorted.js +11 -0
  1794. package/full/array/instance/to-spliced.js +11 -0
  1795. package/full/array/instance/unique-by.js +11 -0
  1796. package/full/array/instance/unshift.js +11 -0
  1797. package/full/array/instance/values.js +11 -0
  1798. package/full/array/instance/with.js +11 -0
  1799. package/full/array/is-template-object.js +3 -2
  1800. package/full/array/iterator.js +6 -2
  1801. package/full/array/join.js +4 -2
  1802. package/full/array/keys.js +5 -2
  1803. package/full/array/last-index-of.js +4 -2
  1804. package/full/array/map.js +4 -2
  1805. package/full/array/of.js +4 -2
  1806. package/full/array/prototype/at.js +6 -0
  1807. package/full/array/prototype/concat.js +6 -0
  1808. package/full/array/prototype/copy-within.js +6 -0
  1809. package/full/array/prototype/entries.js +7 -0
  1810. package/full/array/prototype/fill.js +6 -0
  1811. package/full/array/prototype/filter-reject.js +6 -0
  1812. package/full/array/prototype/filter.js +6 -0
  1813. package/full/array/prototype/find-index.js +6 -0
  1814. package/full/array/prototype/find-last-index.js +6 -0
  1815. package/full/array/prototype/find-last.js +6 -0
  1816. package/full/array/prototype/find.js +6 -0
  1817. package/full/array/prototype/flat-map.js +7 -0
  1818. package/full/array/prototype/flat.js +7 -0
  1819. package/full/array/prototype/includes.js +6 -0
  1820. package/full/array/prototype/index-of.js +6 -0
  1821. package/full/array/prototype/iterator.js +7 -0
  1822. package/full/array/prototype/join.js +6 -0
  1823. package/full/array/prototype/keys.js +7 -0
  1824. package/full/array/prototype/last-index-of.js +6 -0
  1825. package/full/array/prototype/map.js +6 -0
  1826. package/full/array/prototype/push.js +6 -0
  1827. package/full/array/prototype/reduce-right.js +6 -0
  1828. package/full/array/prototype/reduce.js +6 -0
  1829. package/full/array/prototype/reverse.js +6 -0
  1830. package/full/array/prototype/slice.js +6 -0
  1831. package/full/array/prototype/sort.js +6 -0
  1832. package/full/array/prototype/splice.js +6 -0
  1833. package/full/array/prototype/to-reversed.js +6 -0
  1834. package/full/array/prototype/to-sorted.js +7 -0
  1835. package/full/array/prototype/to-spliced.js +6 -0
  1836. package/full/array/prototype/unique-by.js +11 -0
  1837. package/full/array/prototype/unshift.js +6 -0
  1838. package/full/array/prototype/values.js +10 -0
  1839. package/full/array/prototype/with.js +6 -0
  1840. package/full/array/push.js +4 -2
  1841. package/full/array/reduce-right.js +4 -2
  1842. package/full/array/reduce.js +4 -2
  1843. package/full/array/reverse.js +4 -2
  1844. package/full/array/slice.js +4 -2
  1845. package/full/array/sort.js +4 -2
  1846. package/full/array/splice.js +4 -2
  1847. package/full/array/to-reversed.js +4 -2
  1848. package/full/array/to-sorted.js +5 -2
  1849. package/full/array/to-spliced.js +4 -2
  1850. package/full/array/unique-by.js +6 -1
  1851. package/full/array/unshift.js +4 -2
  1852. package/full/array/values.js +8 -2
  1853. package/full/array/with.js +4 -2
  1854. package/full/array-buffer/constructor.js +11 -2
  1855. package/full/array-buffer/detached.js +1 -3
  1856. package/full/array-buffer/index.js +12 -2
  1857. package/full/array-buffer/is-view.js +4 -2
  1858. package/full/array-buffer/slice.js +1 -3
  1859. package/full/array-buffer/transfer-to-fixed-length.js +2 -3
  1860. package/full/array-buffer/transfer.js +2 -3
  1861. package/full/async-disposable-stack/constructor.js +12 -2
  1862. package/full/async-disposable-stack/index.js +12 -2
  1863. package/full/async-iterator/constructor.js +27 -0
  1864. package/full/async-iterator/drop.js +11 -2
  1865. package/full/async-iterator/every.js +10 -2
  1866. package/full/async-iterator/filter.js +11 -2
  1867. package/full/async-iterator/find.js +10 -2
  1868. package/full/async-iterator/flat-map.js +14 -2
  1869. package/full/async-iterator/for-each.js +10 -2
  1870. package/full/async-iterator/from.js +26 -2
  1871. package/full/async-iterator/index.js +26 -5
  1872. package/full/async-iterator/map.js +11 -2
  1873. package/full/async-iterator/prototype/drop.js +13 -0
  1874. package/full/async-iterator/prototype/every.js +12 -0
  1875. package/full/async-iterator/prototype/filter.js +13 -0
  1876. package/full/async-iterator/prototype/find.js +12 -0
  1877. package/full/async-iterator/prototype/flat-map.js +16 -0
  1878. package/full/async-iterator/prototype/for-each.js +12 -0
  1879. package/full/async-iterator/prototype/map.js +13 -0
  1880. package/full/async-iterator/prototype/reduce.js +12 -0
  1881. package/full/async-iterator/prototype/some.js +12 -0
  1882. package/full/async-iterator/prototype/take.js +13 -0
  1883. package/full/async-iterator/prototype/to-array.js +12 -0
  1884. package/full/async-iterator/reduce.js +10 -2
  1885. package/full/async-iterator/some.js +10 -2
  1886. package/full/async-iterator/take.js +11 -2
  1887. package/full/async-iterator/to-array.js +10 -2
  1888. package/full/atob.js +8 -2
  1889. package/full/btoa.js +8 -2
  1890. package/full/clear-immediate.js +4 -2
  1891. package/full/data-view/constructor.js +15 -0
  1892. package/full/data-view/get-float16.js +1 -3
  1893. package/full/data-view/index.js +11 -2
  1894. package/full/data-view/set-float16.js +2 -3
  1895. package/full/date/index.js +5 -2
  1896. package/full/date/prototype/to-json.js +6 -0
  1897. package/full/date/to-json.js +4 -2
  1898. package/full/disposable-stack/constructor.js +7 -2
  1899. package/full/disposable-stack/index.js +7 -2
  1900. package/full/dom-collections/entries.js +4 -0
  1901. package/full/dom-collections/for-each.js +1 -3
  1902. package/full/dom-collections/index.js +9 -3
  1903. package/full/dom-collections/instance/entries.js +21 -0
  1904. package/full/dom-collections/instance/for-each.js +19 -0
  1905. package/full/dom-collections/instance/keys.js +21 -0
  1906. package/full/dom-collections/instance/values.js +21 -0
  1907. package/full/dom-collections/iterator.js +3 -3
  1908. package/full/dom-collections/keys.js +4 -0
  1909. package/full/dom-collections/prototype/entries.js +8 -0
  1910. package/full/dom-collections/prototype/for-each.js +6 -0
  1911. package/full/dom-collections/prototype/keys.js +8 -0
  1912. package/full/dom-collections/prototype/values.js +8 -0
  1913. package/full/dom-collections/values.js +4 -0
  1914. package/full/dom-exception/constructor.js +7 -2
  1915. package/full/dom-exception/index.js +7 -2
  1916. package/full/error/constructor.js +4 -2
  1917. package/full/error/index.js +5 -2
  1918. package/full/error/is-error.js +4 -2
  1919. package/full/eval-error/constructor.js +6 -0
  1920. package/full/eval-error/index.js +7 -0
  1921. package/full/eval-error/is-error.js +6 -0
  1922. package/full/float32-array/at.js +2 -0
  1923. package/full/float32-array/constructor.js +49 -0
  1924. package/full/float32-array/copy-within.js +2 -0
  1925. package/full/float32-array/entries.js +4 -0
  1926. package/full/float32-array/every.js +2 -0
  1927. package/full/float32-array/fill.js +2 -0
  1928. package/full/float32-array/filter-reject.js +2 -0
  1929. package/full/float32-array/filter.js +2 -0
  1930. package/full/float32-array/find-index.js +2 -0
  1931. package/full/float32-array/find-last-index.js +2 -0
  1932. package/full/float32-array/find-last.js +2 -0
  1933. package/full/float32-array/find.js +2 -0
  1934. package/full/float32-array/for-each.js +2 -0
  1935. package/full/float32-array/from.js +45 -0
  1936. package/full/float32-array/includes.js +2 -0
  1937. package/full/float32-array/index-of.js +2 -0
  1938. package/full/float32-array/index.js +51 -0
  1939. package/full/float32-array/iterator.js +4 -0
  1940. package/full/float32-array/join.js +2 -0
  1941. package/full/float32-array/keys.js +4 -0
  1942. package/full/float32-array/last-index-of.js +2 -0
  1943. package/full/float32-array/map.js +2 -0
  1944. package/full/float32-array/of.js +45 -0
  1945. package/full/float32-array/reduce-right.js +2 -0
  1946. package/full/float32-array/reduce.js +2 -0
  1947. package/full/float32-array/reverse.js +2 -0
  1948. package/full/float32-array/set.js +2 -0
  1949. package/full/float32-array/slice.js +2 -0
  1950. package/full/float32-array/some.js +2 -0
  1951. package/full/float32-array/sort.js +2 -0
  1952. package/full/float32-array/subarray.js +2 -0
  1953. package/full/float32-array/to-locale-string.js +2 -0
  1954. package/full/float32-array/to-reversed.js +2 -0
  1955. package/full/float32-array/to-sorted.js +2 -0
  1956. package/full/float32-array/to-string.js +2 -0
  1957. package/full/float32-array/unique-by.js +7 -0
  1958. package/full/float32-array/values.js +5 -0
  1959. package/full/float32-array/with.js +2 -0
  1960. package/full/float64-array/at.js +2 -0
  1961. package/full/float64-array/constructor.js +49 -0
  1962. package/full/float64-array/copy-within.js +2 -0
  1963. package/full/float64-array/entries.js +4 -0
  1964. package/full/float64-array/every.js +2 -0
  1965. package/full/float64-array/fill.js +2 -0
  1966. package/full/float64-array/filter-reject.js +2 -0
  1967. package/full/float64-array/filter.js +2 -0
  1968. package/full/float64-array/find-index.js +2 -0
  1969. package/full/float64-array/find-last-index.js +2 -0
  1970. package/full/float64-array/find-last.js +2 -0
  1971. package/full/float64-array/find.js +2 -0
  1972. package/full/float64-array/for-each.js +2 -0
  1973. package/full/float64-array/from.js +45 -0
  1974. package/full/float64-array/includes.js +2 -0
  1975. package/full/float64-array/index-of.js +2 -0
  1976. package/full/float64-array/index.js +51 -0
  1977. package/full/float64-array/iterator.js +4 -0
  1978. package/full/float64-array/join.js +2 -0
  1979. package/full/float64-array/keys.js +4 -0
  1980. package/full/float64-array/last-index-of.js +2 -0
  1981. package/full/float64-array/map.js +2 -0
  1982. package/full/float64-array/of.js +45 -0
  1983. package/full/float64-array/reduce-right.js +2 -0
  1984. package/full/float64-array/reduce.js +2 -0
  1985. package/full/float64-array/reverse.js +2 -0
  1986. package/full/float64-array/set.js +2 -0
  1987. package/full/float64-array/slice.js +2 -0
  1988. package/full/float64-array/some.js +2 -0
  1989. package/full/float64-array/sort.js +2 -0
  1990. package/full/float64-array/subarray.js +2 -0
  1991. package/full/float64-array/to-locale-string.js +2 -0
  1992. package/full/float64-array/to-reversed.js +2 -0
  1993. package/full/float64-array/to-sorted.js +2 -0
  1994. package/full/float64-array/to-string.js +2 -0
  1995. package/full/float64-array/unique-by.js +7 -0
  1996. package/full/float64-array/values.js +5 -0
  1997. package/full/float64-array/with.js +2 -0
  1998. package/full/function/demethodize.js +1 -0
  1999. package/full/function/index.js +6 -6
  2000. package/full/function/instance/name.js +9 -0
  2001. package/full/function/name.js +4 -2
  2002. package/full/function/prototype/demethodize.js +6 -0
  2003. package/full/get-iterator-method.js +7 -2
  2004. package/full/get-iterator.js +7 -2
  2005. package/full/global-this.js +3 -4
  2006. package/full/index.js +119 -277
  2007. package/full/instance/at.js +7 -7
  2008. package/full/instance/clamp.js +4 -6
  2009. package/full/instance/code-point-at.js +10 -2
  2010. package/full/instance/concat.js +9 -2
  2011. package/full/instance/copy-within.js +9 -2
  2012. package/full/instance/demethodize.js +5 -3
  2013. package/full/instance/ends-with.js +10 -2
  2014. package/full/instance/entries.js +21 -2
  2015. package/full/instance/fill.js +9 -2
  2016. package/full/instance/filter-reject.js +4 -3
  2017. package/full/instance/filter.js +9 -2
  2018. package/full/instance/find-index.js +9 -2
  2019. package/full/instance/find-last-index.js +9 -2
  2020. package/full/instance/find-last.js +9 -2
  2021. package/full/instance/find.js +9 -2
  2022. package/full/instance/flags.js +9 -2
  2023. package/full/instance/flat-map.js +9 -2
  2024. package/full/instance/flat.js +9 -2
  2025. package/full/instance/for-each.js +17 -2
  2026. package/full/instance/includes.js +13 -2
  2027. package/full/instance/index-of.js +9 -2
  2028. package/full/instance/is-well-formed.js +10 -2
  2029. package/full/instance/join.js +11 -0
  2030. package/full/instance/keys.js +21 -2
  2031. package/full/instance/last-index-of.js +9 -2
  2032. package/full/instance/map.js +9 -2
  2033. package/full/instance/match-all.js +9 -4
  2034. package/full/instance/name.js +9 -0
  2035. package/full/instance/pad-end.js +10 -2
  2036. package/full/instance/pad-start.js +10 -2
  2037. package/full/instance/push.js +9 -2
  2038. package/full/instance/reduce-right.js +9 -2
  2039. package/full/instance/reduce.js +9 -2
  2040. package/full/instance/repeat.js +10 -2
  2041. package/full/instance/replace-all.js +9 -4
  2042. package/full/instance/reverse.js +9 -2
  2043. package/full/instance/slice.js +9 -2
  2044. package/full/instance/sort.js +9 -2
  2045. package/full/instance/splice.js +9 -2
  2046. package/full/instance/starts-with.js +10 -2
  2047. package/full/instance/to-exponential.js +12 -0
  2048. package/full/instance/to-fixed.js +12 -0
  2049. package/full/instance/to-reversed.js +9 -2
  2050. package/full/instance/to-sorted.js +9 -2
  2051. package/full/instance/to-spliced.js +9 -2
  2052. package/full/instance/to-well-formed.js +10 -2
  2053. package/full/instance/trim-end.js +10 -2
  2054. package/full/instance/trim-left.js +10 -2
  2055. package/full/instance/trim-right.js +10 -2
  2056. package/full/instance/trim-start.js +10 -2
  2057. package/full/instance/trim.js +10 -2
  2058. package/full/instance/unique-by.js +4 -3
  2059. package/full/instance/unshift.js +9 -2
  2060. package/full/instance/values.js +24 -2
  2061. package/full/instance/with.js +9 -2
  2062. package/full/int16-array/at.js +2 -0
  2063. package/full/int16-array/constructor.js +49 -0
  2064. package/full/int16-array/copy-within.js +2 -0
  2065. package/full/int16-array/entries.js +4 -0
  2066. package/full/int16-array/every.js +2 -0
  2067. package/full/int16-array/fill.js +2 -0
  2068. package/full/int16-array/filter-reject.js +2 -0
  2069. package/full/int16-array/filter.js +2 -0
  2070. package/full/int16-array/find-index.js +2 -0
  2071. package/full/int16-array/find-last-index.js +2 -0
  2072. package/full/int16-array/find-last.js +2 -0
  2073. package/full/int16-array/find.js +2 -0
  2074. package/full/int16-array/for-each.js +2 -0
  2075. package/full/int16-array/from.js +45 -0
  2076. package/full/int16-array/includes.js +2 -0
  2077. package/full/int16-array/index-of.js +2 -0
  2078. package/full/int16-array/index.js +51 -0
  2079. package/full/int16-array/iterator.js +4 -0
  2080. package/full/int16-array/join.js +2 -0
  2081. package/full/int16-array/keys.js +4 -0
  2082. package/full/int16-array/last-index-of.js +2 -0
  2083. package/full/int16-array/map.js +2 -0
  2084. package/full/int16-array/of.js +45 -0
  2085. package/full/int16-array/reduce-right.js +2 -0
  2086. package/full/int16-array/reduce.js +2 -0
  2087. package/full/int16-array/reverse.js +2 -0
  2088. package/full/int16-array/set.js +2 -0
  2089. package/full/int16-array/slice.js +2 -0
  2090. package/full/int16-array/some.js +2 -0
  2091. package/full/int16-array/sort.js +2 -0
  2092. package/full/int16-array/subarray.js +2 -0
  2093. package/full/int16-array/to-locale-string.js +2 -0
  2094. package/full/int16-array/to-reversed.js +2 -0
  2095. package/full/int16-array/to-sorted.js +2 -0
  2096. package/full/int16-array/to-string.js +2 -0
  2097. package/full/int16-array/unique-by.js +7 -0
  2098. package/full/int16-array/values.js +5 -0
  2099. package/full/int16-array/with.js +2 -0
  2100. package/full/int32-array/at.js +2 -0
  2101. package/full/int32-array/constructor.js +49 -0
  2102. package/full/int32-array/copy-within.js +2 -0
  2103. package/full/int32-array/entries.js +4 -0
  2104. package/full/int32-array/every.js +2 -0
  2105. package/full/int32-array/fill.js +2 -0
  2106. package/full/int32-array/filter-reject.js +2 -0
  2107. package/full/int32-array/filter.js +2 -0
  2108. package/full/int32-array/find-index.js +2 -0
  2109. package/full/int32-array/find-last-index.js +2 -0
  2110. package/full/int32-array/find-last.js +2 -0
  2111. package/full/int32-array/find.js +2 -0
  2112. package/full/int32-array/for-each.js +2 -0
  2113. package/full/int32-array/from.js +45 -0
  2114. package/full/int32-array/includes.js +2 -0
  2115. package/full/int32-array/index-of.js +2 -0
  2116. package/full/int32-array/index.js +51 -0
  2117. package/full/int32-array/iterator.js +4 -0
  2118. package/full/int32-array/join.js +2 -0
  2119. package/full/int32-array/keys.js +4 -0
  2120. package/full/int32-array/last-index-of.js +2 -0
  2121. package/full/int32-array/map.js +2 -0
  2122. package/full/int32-array/of.js +45 -0
  2123. package/full/int32-array/reduce-right.js +2 -0
  2124. package/full/int32-array/reduce.js +2 -0
  2125. package/full/int32-array/reverse.js +2 -0
  2126. package/full/int32-array/set.js +2 -0
  2127. package/full/int32-array/slice.js +2 -0
  2128. package/full/int32-array/some.js +2 -0
  2129. package/full/int32-array/sort.js +2 -0
  2130. package/full/int32-array/subarray.js +2 -0
  2131. package/full/int32-array/to-locale-string.js +2 -0
  2132. package/full/int32-array/to-reversed.js +2 -0
  2133. package/full/int32-array/to-sorted.js +2 -0
  2134. package/full/int32-array/to-string.js +2 -0
  2135. package/full/int32-array/unique-by.js +7 -0
  2136. package/full/int32-array/values.js +5 -0
  2137. package/full/int32-array/with.js +2 -0
  2138. package/full/int8-array/at.js +2 -0
  2139. package/full/int8-array/constructor.js +49 -0
  2140. package/full/int8-array/copy-within.js +2 -0
  2141. package/full/int8-array/entries.js +4 -0
  2142. package/full/int8-array/every.js +2 -0
  2143. package/full/int8-array/fill.js +2 -0
  2144. package/full/int8-array/filter-reject.js +2 -0
  2145. package/full/int8-array/filter.js +2 -0
  2146. package/full/int8-array/find-index.js +2 -0
  2147. package/full/int8-array/find-last-index.js +2 -0
  2148. package/full/int8-array/find-last.js +2 -0
  2149. package/full/int8-array/find.js +2 -0
  2150. package/full/int8-array/for-each.js +2 -0
  2151. package/full/int8-array/from.js +45 -0
  2152. package/full/int8-array/includes.js +2 -0
  2153. package/full/int8-array/index-of.js +2 -0
  2154. package/full/int8-array/index.js +51 -0
  2155. package/full/int8-array/iterator.js +4 -0
  2156. package/full/int8-array/join.js +2 -0
  2157. package/full/int8-array/keys.js +4 -0
  2158. package/full/int8-array/last-index-of.js +2 -0
  2159. package/full/int8-array/map.js +2 -0
  2160. package/full/int8-array/of.js +45 -0
  2161. package/full/int8-array/reduce-right.js +2 -0
  2162. package/full/int8-array/reduce.js +2 -0
  2163. package/full/int8-array/reverse.js +2 -0
  2164. package/full/int8-array/set.js +2 -0
  2165. package/full/int8-array/slice.js +2 -0
  2166. package/full/int8-array/some.js +2 -0
  2167. package/full/int8-array/sort.js +2 -0
  2168. package/full/int8-array/subarray.js +2 -0
  2169. package/full/int8-array/to-locale-string.js +2 -0
  2170. package/full/int8-array/to-reversed.js +2 -0
  2171. package/full/int8-array/to-sorted.js +2 -0
  2172. package/full/int8-array/to-string.js +2 -0
  2173. package/full/int8-array/unique-by.js +7 -0
  2174. package/full/int8-array/values.js +5 -0
  2175. package/full/int8-array/with.js +2 -0
  2176. package/full/is-iterable.js +7 -2
  2177. package/full/iterator/concat.js +29 -3
  2178. package/full/iterator/constructor.js +32 -0
  2179. package/full/iterator/drop.js +6 -2
  2180. package/full/iterator/every.js +9 -2
  2181. package/full/iterator/filter.js +6 -2
  2182. package/full/iterator/find.js +9 -2
  2183. package/full/iterator/flat-map.js +9 -2
  2184. package/full/iterator/for-each.js +9 -2
  2185. package/full/iterator/from.js +29 -3
  2186. package/full/iterator/includes.js +11 -0
  2187. package/full/iterator/index.js +33 -6
  2188. package/full/iterator/join.js +11 -0
  2189. package/full/iterator/map.js +6 -2
  2190. package/full/iterator/prototype/chunks.js +8 -0
  2191. package/full/iterator/prototype/drop.js +8 -0
  2192. package/full/iterator/prototype/every.js +11 -0
  2193. package/full/iterator/prototype/filter.js +8 -0
  2194. package/full/iterator/prototype/find.js +11 -0
  2195. package/full/iterator/prototype/flat-map.js +11 -0
  2196. package/full/iterator/prototype/for-each.js +11 -0
  2197. package/full/iterator/prototype/includes.js +11 -0
  2198. package/full/iterator/prototype/join.js +11 -0
  2199. package/full/iterator/prototype/map.js +8 -0
  2200. package/full/iterator/prototype/reduce.js +11 -0
  2201. package/full/iterator/prototype/some.js +11 -0
  2202. package/full/iterator/prototype/take.js +8 -0
  2203. package/full/iterator/prototype/to-array.js +11 -0
  2204. package/full/iterator/prototype/to-async.js +13 -0
  2205. package/full/iterator/prototype/windows.js +8 -0
  2206. package/full/iterator/range.js +14 -7
  2207. package/full/iterator/reduce.js +9 -2
  2208. package/full/iterator/some.js +9 -2
  2209. package/full/iterator/take.js +6 -2
  2210. package/full/iterator/to-array.js +9 -2
  2211. package/full/iterator/to-async.js +11 -2
  2212. package/full/iterator/zip-keyed.js +30 -3
  2213. package/full/iterator/zip.js +29 -3
  2214. package/full/json/index.js +10 -2
  2215. package/full/json/is-raw-json.js +4 -2
  2216. package/full/json/parse.js +4 -2
  2217. package/full/json/raw-json.js +4 -2
  2218. package/full/json/stringify.js +5 -2
  2219. package/full/map/constructor.js +13 -0
  2220. package/full/map/from.js +7 -19
  2221. package/full/map/get-or-insert-computed.js +9 -2
  2222. package/full/map/get-or-insert.js +9 -2
  2223. package/full/map/group-by.js +12 -18
  2224. package/full/map/index.js +12 -23
  2225. package/full/map/of.js +9 -19
  2226. package/full/map/prototype/get-or-insert-computed.js +11 -0
  2227. package/full/map/prototype/get-or-insert.js +11 -0
  2228. package/full/math/acosh.js +4 -2
  2229. package/full/math/asinh.js +4 -2
  2230. package/full/math/atanh.js +4 -2
  2231. package/full/math/cbrt.js +4 -2
  2232. package/full/math/clz32.js +4 -2
  2233. package/full/math/cosh.js +4 -2
  2234. package/full/math/expm1.js +4 -2
  2235. package/full/math/f16round.js +4 -2
  2236. package/full/math/fround.js +4 -2
  2237. package/full/math/hypot.js +4 -2
  2238. package/full/math/imul.js +4 -2
  2239. package/full/math/index.js +27 -17
  2240. package/full/math/log10.js +4 -2
  2241. package/full/math/log1p.js +4 -2
  2242. package/full/math/log2.js +4 -2
  2243. package/full/math/sign.js +4 -2
  2244. package/full/math/sinh.js +4 -2
  2245. package/full/math/sum-precise.js +8 -2
  2246. package/full/math/tanh.js +4 -2
  2247. package/full/math/trunc.js +4 -2
  2248. package/full/number/clamp.js +1 -0
  2249. package/full/number/constructor.js +4 -2
  2250. package/full/number/epsilon.js +4 -2
  2251. package/full/number/index.js +18 -6
  2252. package/full/number/instance/clamp.js +12 -0
  2253. package/full/number/instance/to-exponential.js +12 -0
  2254. package/full/number/instance/to-fixed.js +12 -0
  2255. package/full/number/is-finite.js +4 -2
  2256. package/full/number/is-integer.js +4 -2
  2257. package/full/number/is-nan.js +4 -2
  2258. package/full/number/is-safe-integer.js +4 -2
  2259. package/full/number/max-safe-integer.js +4 -2
  2260. package/full/number/min-safe-integer.js +4 -2
  2261. package/full/number/parse-float.js +5 -2
  2262. package/full/number/parse-int.js +5 -2
  2263. package/full/number/prototype/clamp.js +6 -0
  2264. package/full/number/prototype/to-exponential.js +7 -0
  2265. package/full/number/prototype/to-fixed.js +7 -0
  2266. package/full/number/to-exponential.js +5 -2
  2267. package/full/number/to-fixed.js +5 -2
  2268. package/full/object/assign.js +4 -2
  2269. package/full/object/create.js +5 -2
  2270. package/full/object/define-getter.js +4 -2
  2271. package/full/object/define-properties.js +5 -2
  2272. package/full/object/define-property.js +5 -2
  2273. package/full/object/define-setter.js +4 -2
  2274. package/full/object/entries.js +4 -2
  2275. package/full/object/freeze.js +4 -2
  2276. package/full/object/from-entries.js +8 -2
  2277. package/full/object/get-own-property-descriptor.js +7 -2
  2278. package/full/object/get-own-property-descriptors.js +4 -2
  2279. package/full/object/get-own-property-names.js +7 -2
  2280. package/full/object/get-own-property-symbols.js +4 -2
  2281. package/full/object/get-prototype-of.js +4 -2
  2282. package/full/object/group-by.js +8 -2
  2283. package/full/object/has-own.js +3 -4
  2284. package/full/object/index.js +33 -7
  2285. package/full/object/is-extensible.js +4 -2
  2286. package/full/object/is-frozen.js +4 -2
  2287. package/full/object/is-sealed.js +4 -2
  2288. package/full/object/is.js +4 -2
  2289. package/full/object/keys-length.js +6 -0
  2290. package/full/object/keys.js +4 -2
  2291. package/full/object/lookup-getter.js +4 -2
  2292. package/full/object/lookup-setter.js +4 -2
  2293. package/full/object/prevent-extensions.js +4 -2
  2294. package/full/object/proto.js +1 -3
  2295. package/full/object/prototype/define-getter.js +6 -0
  2296. package/full/object/prototype/define-setter.js +6 -0
  2297. package/full/object/prototype/lookup-getter.js +6 -0
  2298. package/full/object/prototype/lookup-setter.js +6 -0
  2299. package/full/object/prototype/to-string.js +6 -0
  2300. package/full/object/seal.js +4 -2
  2301. package/full/object/set-prototype-of.js +4 -2
  2302. package/full/object/to-string.js +4 -2
  2303. package/full/object/values.js +4 -2
  2304. package/full/parse-float.js +4 -2
  2305. package/full/parse-int.js +4 -2
  2306. package/full/promise/all-keyed.js +19 -0
  2307. package/full/promise/all-settled-keyed.js +19 -0
  2308. package/full/promise/all-settled.js +18 -4
  2309. package/full/promise/all.js +21 -0
  2310. package/full/promise/any.js +19 -5
  2311. package/full/promise/catch.js +8 -0
  2312. package/full/promise/constructor.js +9 -0
  2313. package/full/promise/finally.js +6 -2
  2314. package/full/promise/index.js +22 -6
  2315. package/full/promise/prototype/catch.js +8 -0
  2316. package/full/promise/prototype/finally.js +8 -0
  2317. package/full/promise/race.js +21 -0
  2318. package/full/promise/reject.js +17 -0
  2319. package/full/promise/resolve.js +17 -0
  2320. package/full/promise/try.js +15 -2
  2321. package/full/promise/with-resolvers.js +15 -2
  2322. package/full/queue-microtask.js +4 -2
  2323. package/full/range-error/constructor.js +6 -0
  2324. package/full/range-error/index.js +7 -0
  2325. package/full/range-error/is-error.js +6 -0
  2326. package/full/reference-error/constructor.js +6 -0
  2327. package/full/reference-error/index.js +7 -0
  2328. package/full/reference-error/is-error.js +6 -0
  2329. package/full/reflect/apply.js +4 -2
  2330. package/full/reflect/construct.js +4 -2
  2331. package/full/reflect/define-property.js +4 -2
  2332. package/full/reflect/delete-property.js +4 -2
  2333. package/full/reflect/get-own-property-descriptor.js +4 -2
  2334. package/full/reflect/get-prototype-of.js +4 -2
  2335. package/full/reflect/get.js +4 -2
  2336. package/full/reflect/has.js +4 -2
  2337. package/full/reflect/index.js +18 -11
  2338. package/full/reflect/is-extensible.js +4 -2
  2339. package/full/reflect/own-keys.js +4 -2
  2340. package/full/reflect/prevent-extensions.js +4 -2
  2341. package/full/reflect/set-prototype-of.js +4 -2
  2342. package/full/reflect/set.js +4 -2
  2343. package/full/regexp/constructor.js +4 -3
  2344. package/full/regexp/dot-all.js +3 -3
  2345. package/full/regexp/escape.js +6 -2
  2346. package/full/regexp/exec.js +2 -0
  2347. package/full/regexp/flags.js +4 -2
  2348. package/full/regexp/index.js +14 -3
  2349. package/full/regexp/instance/flags.js +11 -0
  2350. package/full/regexp/match.js +2 -3
  2351. package/full/regexp/replace.js +2 -3
  2352. package/full/regexp/search.js +2 -3
  2353. package/full/regexp/split.js +2 -3
  2354. package/full/regexp/sticky.js +3 -3
  2355. package/full/regexp/test.js +5 -2
  2356. package/full/regexp/to-string.js +1 -3
  2357. package/full/self.js +4 -2
  2358. package/full/set/constructor.js +18 -0
  2359. package/full/set/difference.js +4 -2
  2360. package/full/set/from.js +12 -19
  2361. package/full/set/index.js +16 -18
  2362. package/full/set/intersection.js +4 -2
  2363. package/full/set/is-disjoint-from.js +4 -2
  2364. package/full/set/is-subset-of.js +4 -2
  2365. package/full/set/is-superset-of.js +4 -2
  2366. package/full/set/of.js +14 -19
  2367. package/full/set/prototype/difference.js +11 -0
  2368. package/full/set/prototype/intersection.js +11 -0
  2369. package/full/set/prototype/is-disjoint-from.js +11 -0
  2370. package/full/set/prototype/is-subset-of.js +11 -0
  2371. package/full/set/prototype/is-superset-of.js +11 -0
  2372. package/full/set/prototype/symmetric-difference.js +11 -0
  2373. package/full/set/prototype/union.js +11 -0
  2374. package/full/set/symmetric-difference.js +4 -2
  2375. package/full/set/union.js +4 -2
  2376. package/full/set-immediate.js +4 -2
  2377. package/full/string/anchor.js +4 -2
  2378. package/full/string/at.js +4 -4
  2379. package/full/string/big.js +4 -2
  2380. package/full/string/blink.js +4 -2
  2381. package/full/string/bold.js +4 -2
  2382. package/full/string/code-point-at.js +4 -2
  2383. package/full/string/cooked.js +3 -2
  2384. package/full/string/dedent.js +8 -3
  2385. package/full/string/ends-with.js +4 -2
  2386. package/full/string/fixed.js +4 -2
  2387. package/full/string/fontcolor.js +4 -2
  2388. package/full/string/fontsize.js +4 -2
  2389. package/full/string/from-code-point.js +4 -2
  2390. package/full/string/includes.js +4 -2
  2391. package/full/string/index.js +45 -8
  2392. package/full/string/instance/anchor.js +12 -0
  2393. package/full/string/instance/at.js +12 -0
  2394. package/full/string/instance/big.js +12 -0
  2395. package/full/string/instance/blink.js +12 -0
  2396. package/full/string/instance/bold.js +12 -0
  2397. package/full/string/instance/code-point-at.js +12 -0
  2398. package/full/string/instance/ends-with.js +12 -0
  2399. package/full/string/instance/fixed.js +12 -0
  2400. package/full/string/instance/fontcolor.js +12 -0
  2401. package/full/string/instance/fontsize.js +12 -0
  2402. package/full/string/instance/includes.js +12 -0
  2403. package/full/string/instance/is-well-formed.js +12 -0
  2404. package/full/string/instance/italics.js +12 -0
  2405. package/full/string/instance/link.js +12 -0
  2406. package/full/string/instance/match-all.js +12 -0
  2407. package/full/string/instance/pad-end.js +12 -0
  2408. package/full/string/instance/pad-start.js +12 -0
  2409. package/full/string/instance/repeat.js +12 -0
  2410. package/full/string/instance/replace-all.js +12 -0
  2411. package/full/string/instance/small.js +12 -0
  2412. package/full/string/instance/starts-with.js +12 -0
  2413. package/full/string/instance/strike.js +12 -0
  2414. package/full/string/instance/sub.js +12 -0
  2415. package/full/string/instance/sup.js +12 -0
  2416. package/full/string/instance/to-well-formed.js +12 -0
  2417. package/full/string/instance/trim-end.js +12 -0
  2418. package/full/string/instance/trim-left.js +12 -0
  2419. package/full/string/instance/trim-right.js +12 -0
  2420. package/full/string/instance/trim-start.js +12 -0
  2421. package/full/string/instance/trim.js +12 -0
  2422. package/full/string/is-well-formed.js +4 -2
  2423. package/full/string/italics.js +4 -2
  2424. package/full/string/iterator.js +6 -2
  2425. package/full/string/link.js +4 -2
  2426. package/full/string/match-all.js +5 -4
  2427. package/full/string/match.js +2 -3
  2428. package/full/string/pad-end.js +5 -2
  2429. package/full/string/pad-start.js +5 -2
  2430. package/full/string/prototype/anchor.js +6 -0
  2431. package/full/string/prototype/at.js +6 -0
  2432. package/full/string/prototype/big.js +6 -0
  2433. package/full/string/prototype/blink.js +6 -0
  2434. package/full/string/prototype/bold.js +6 -0
  2435. package/full/string/prototype/code-point-at.js +6 -0
  2436. package/full/string/prototype/ends-with.js +6 -0
  2437. package/full/string/prototype/fixed.js +6 -0
  2438. package/full/string/prototype/fontcolor.js +6 -0
  2439. package/full/string/prototype/fontsize.js +6 -0
  2440. package/full/string/prototype/includes.js +6 -0
  2441. package/full/string/prototype/is-well-formed.js +6 -0
  2442. package/full/string/prototype/italics.js +6 -0
  2443. package/full/string/prototype/iterator.js +7 -0
  2444. package/full/string/prototype/link.js +6 -0
  2445. package/full/string/prototype/match-all.js +8 -0
  2446. package/full/string/prototype/pad-end.js +7 -0
  2447. package/full/string/prototype/pad-start.js +7 -0
  2448. package/full/string/prototype/repeat.js +6 -0
  2449. package/full/string/prototype/replace-all.js +8 -0
  2450. package/full/string/prototype/small.js +6 -0
  2451. package/full/string/prototype/starts-with.js +6 -0
  2452. package/full/string/prototype/strike.js +6 -0
  2453. package/full/string/prototype/sub.js +6 -0
  2454. package/full/string/prototype/sup.js +6 -0
  2455. package/full/string/prototype/to-well-formed.js +6 -0
  2456. package/full/string/prototype/trim-end.js +6 -0
  2457. package/full/string/prototype/trim-left.js +6 -0
  2458. package/full/string/prototype/trim-right.js +6 -0
  2459. package/full/string/prototype/trim-start.js +6 -0
  2460. package/full/string/prototype/trim.js +6 -0
  2461. package/full/string/raw.js +4 -2
  2462. package/full/string/repeat.js +4 -2
  2463. package/full/string/replace-all.js +5 -4
  2464. package/full/string/replace.js +2 -3
  2465. package/full/string/search.js +2 -3
  2466. package/full/string/small.js +4 -2
  2467. package/full/string/split.js +2 -3
  2468. package/full/string/starts-with.js +4 -2
  2469. package/full/string/strike.js +4 -2
  2470. package/full/string/sub.js +4 -2
  2471. package/full/string/sup.js +4 -2
  2472. package/full/string/to-well-formed.js +4 -2
  2473. package/full/string/trim-end.js +4 -2
  2474. package/full/string/trim-left.js +4 -2
  2475. package/full/string/trim-right.js +4 -2
  2476. package/full/string/trim-start.js +4 -2
  2477. package/full/string/trim.js +4 -2
  2478. package/full/structured-clone.js +13 -2
  2479. package/full/suppressed-error/constructor.js +6 -0
  2480. package/full/suppressed-error/index.js +7 -0
  2481. package/full/suppressed-error/is-error.js +6 -0
  2482. package/full/symbol/async-dispose.js +10 -2
  2483. package/full/symbol/async-iterator.js +4 -2
  2484. package/full/symbol/constructor.js +8 -0
  2485. package/full/symbol/custom-matcher.js +3 -2
  2486. package/full/symbol/dispose.js +5 -2
  2487. package/full/symbol/for.js +7 -2
  2488. package/full/symbol/has-instance.js +5 -2
  2489. package/full/symbol/index.js +25 -11
  2490. package/full/symbol/is-concat-spreadable.js +4 -2
  2491. package/full/symbol/is-registered-symbol.js +6 -3
  2492. package/full/symbol/is-well-known-symbol.js +5 -3
  2493. package/full/symbol/iterator.js +8 -2
  2494. package/full/symbol/key-for.js +4 -2
  2495. package/full/symbol/match-all.js +4 -2
  2496. package/full/symbol/match.js +4 -2
  2497. package/full/symbol/metadata.js +5 -2
  2498. package/full/symbol/replace.js +4 -2
  2499. package/full/symbol/search.js +4 -2
  2500. package/full/symbol/species.js +4 -2
  2501. package/full/symbol/split.js +4 -2
  2502. package/full/symbol/to-primitive.js +5 -2
  2503. package/full/symbol/to-string-tag.js +7 -2
  2504. package/full/symbol/unscopables.js +4 -2
  2505. package/full/syntax-error/constructor.js +6 -0
  2506. package/full/syntax-error/index.js +7 -0
  2507. package/full/syntax-error/is-error.js +6 -0
  2508. package/full/type-error/constructor.js +6 -0
  2509. package/full/type-error/index.js +7 -0
  2510. package/full/type-error/is-error.js +6 -0
  2511. package/full/typed-array/at.js +1 -6
  2512. package/full/typed-array/constructors.js +18 -0
  2513. package/full/typed-array/copy-within.js +1 -3
  2514. package/full/typed-array/entries.js +3 -3
  2515. package/full/typed-array/every.js +1 -3
  2516. package/full/typed-array/fill.js +1 -3
  2517. package/full/typed-array/filter.js +1 -3
  2518. package/full/typed-array/find-index.js +1 -3
  2519. package/full/typed-array/find-last-index.js +1 -3
  2520. package/full/typed-array/find-last.js +1 -3
  2521. package/full/typed-array/find.js +1 -3
  2522. package/full/typed-array/for-each.js +1 -3
  2523. package/full/typed-array/from-base64.js +48 -3
  2524. package/full/typed-array/from-hex.js +48 -3
  2525. package/full/typed-array/from.js +48 -3
  2526. package/full/typed-array/includes.js +1 -3
  2527. package/full/typed-array/index-of.js +1 -3
  2528. package/full/typed-array/index.js +61 -10
  2529. package/full/typed-array/iterator.js +3 -3
  2530. package/full/typed-array/join.js +1 -3
  2531. package/full/typed-array/keys.js +3 -3
  2532. package/full/typed-array/last-index-of.js +1 -3
  2533. package/full/typed-array/map.js +1 -3
  2534. package/full/typed-array/methods.js +49 -11
  2535. package/full/typed-array/of.js +48 -3
  2536. package/full/typed-array/reduce-right.js +1 -3
  2537. package/full/typed-array/reduce.js +1 -3
  2538. package/full/typed-array/reverse.js +1 -3
  2539. package/full/typed-array/set-from-base64.js +1 -3
  2540. package/full/typed-array/set-from-hex.js +1 -3
  2541. package/full/typed-array/set.js +1 -3
  2542. package/full/typed-array/slice.js +1 -3
  2543. package/full/typed-array/some.js +1 -3
  2544. package/full/typed-array/sort.js +1 -3
  2545. package/full/typed-array/subarray.js +1 -3
  2546. package/full/typed-array/to-base64.js +1 -3
  2547. package/full/typed-array/to-hex.js +1 -3
  2548. package/full/typed-array/to-locale-string.js +1 -3
  2549. package/full/typed-array/to-reversed.js +1 -3
  2550. package/full/typed-array/to-sorted.js +1 -3
  2551. package/full/typed-array/to-string.js +1 -3
  2552. package/full/typed-array/unique-by.js +5 -1
  2553. package/full/typed-array/values.js +4 -3
  2554. package/full/typed-array/with.js +1 -3
  2555. package/full/uint16-array/at.js +2 -0
  2556. package/full/uint16-array/constructor.js +49 -0
  2557. package/full/uint16-array/copy-within.js +2 -0
  2558. package/full/uint16-array/entries.js +4 -0
  2559. package/full/uint16-array/every.js +2 -0
  2560. package/full/uint16-array/fill.js +2 -0
  2561. package/full/uint16-array/filter-reject.js +2 -0
  2562. package/full/uint16-array/filter.js +2 -0
  2563. package/full/uint16-array/find-index.js +2 -0
  2564. package/full/uint16-array/find-last-index.js +2 -0
  2565. package/full/uint16-array/find-last.js +2 -0
  2566. package/full/uint16-array/find.js +2 -0
  2567. package/full/uint16-array/for-each.js +2 -0
  2568. package/full/uint16-array/from.js +45 -0
  2569. package/full/uint16-array/includes.js +2 -0
  2570. package/full/uint16-array/index-of.js +2 -0
  2571. package/full/uint16-array/index.js +51 -0
  2572. package/full/uint16-array/iterator.js +4 -0
  2573. package/full/uint16-array/join.js +2 -0
  2574. package/full/uint16-array/keys.js +4 -0
  2575. package/full/uint16-array/last-index-of.js +2 -0
  2576. package/full/uint16-array/map.js +2 -0
  2577. package/full/uint16-array/of.js +45 -0
  2578. package/full/uint16-array/reduce-right.js +2 -0
  2579. package/full/uint16-array/reduce.js +2 -0
  2580. package/full/uint16-array/reverse.js +2 -0
  2581. package/full/uint16-array/set.js +2 -0
  2582. package/full/uint16-array/slice.js +2 -0
  2583. package/full/uint16-array/some.js +2 -0
  2584. package/full/uint16-array/sort.js +2 -0
  2585. package/full/uint16-array/subarray.js +2 -0
  2586. package/full/uint16-array/to-locale-string.js +2 -0
  2587. package/full/uint16-array/to-reversed.js +2 -0
  2588. package/full/uint16-array/to-sorted.js +2 -0
  2589. package/full/uint16-array/to-string.js +2 -0
  2590. package/full/uint16-array/unique-by.js +7 -0
  2591. package/full/uint16-array/values.js +5 -0
  2592. package/full/uint16-array/with.js +2 -0
  2593. package/full/uint32-array/at.js +2 -0
  2594. package/full/uint32-array/constructor.js +49 -0
  2595. package/full/uint32-array/copy-within.js +2 -0
  2596. package/full/uint32-array/entries.js +4 -0
  2597. package/full/uint32-array/every.js +2 -0
  2598. package/full/uint32-array/fill.js +2 -0
  2599. package/full/uint32-array/filter-reject.js +2 -0
  2600. package/full/uint32-array/filter.js +2 -0
  2601. package/full/uint32-array/find-index.js +2 -0
  2602. package/full/uint32-array/find-last-index.js +2 -0
  2603. package/full/uint32-array/find-last.js +2 -0
  2604. package/full/uint32-array/find.js +2 -0
  2605. package/full/uint32-array/for-each.js +2 -0
  2606. package/full/uint32-array/from.js +45 -0
  2607. package/full/uint32-array/includes.js +2 -0
  2608. package/full/uint32-array/index-of.js +2 -0
  2609. package/full/uint32-array/index.js +51 -0
  2610. package/full/uint32-array/iterator.js +4 -0
  2611. package/full/uint32-array/join.js +2 -0
  2612. package/full/uint32-array/keys.js +4 -0
  2613. package/full/uint32-array/last-index-of.js +2 -0
  2614. package/full/uint32-array/map.js +2 -0
  2615. package/full/uint32-array/of.js +45 -0
  2616. package/full/uint32-array/reduce-right.js +2 -0
  2617. package/full/uint32-array/reduce.js +2 -0
  2618. package/full/uint32-array/reverse.js +2 -0
  2619. package/full/uint32-array/set.js +2 -0
  2620. package/full/uint32-array/slice.js +2 -0
  2621. package/full/uint32-array/some.js +2 -0
  2622. package/full/uint32-array/sort.js +2 -0
  2623. package/full/uint32-array/subarray.js +2 -0
  2624. package/full/uint32-array/to-locale-string.js +2 -0
  2625. package/full/uint32-array/to-reversed.js +2 -0
  2626. package/full/uint32-array/to-sorted.js +2 -0
  2627. package/full/uint32-array/to-string.js +2 -0
  2628. package/full/uint32-array/unique-by.js +7 -0
  2629. package/full/uint32-array/values.js +5 -0
  2630. package/full/uint32-array/with.js +2 -0
  2631. package/full/uint8-array/at.js +2 -0
  2632. package/full/uint8-array/constructor.js +53 -0
  2633. package/full/uint8-array/copy-within.js +2 -0
  2634. package/full/uint8-array/entries.js +4 -0
  2635. package/full/uint8-array/every.js +2 -0
  2636. package/full/uint8-array/fill.js +2 -0
  2637. package/full/uint8-array/filter-reject.js +2 -0
  2638. package/full/uint8-array/filter.js +2 -0
  2639. package/full/uint8-array/find-index.js +2 -0
  2640. package/full/uint8-array/find-last-index.js +2 -0
  2641. package/full/uint8-array/find-last.js +2 -0
  2642. package/full/uint8-array/find.js +2 -0
  2643. package/full/uint8-array/for-each.js +2 -0
  2644. package/full/uint8-array/from-base64.js +49 -0
  2645. package/full/uint8-array/from-hex.js +49 -0
  2646. package/full/uint8-array/from.js +49 -0
  2647. package/full/uint8-array/includes.js +2 -0
  2648. package/full/uint8-array/index-of.js +2 -0
  2649. package/full/uint8-array/index.js +57 -0
  2650. package/full/uint8-array/iterator.js +4 -0
  2651. package/full/uint8-array/join.js +2 -0
  2652. package/full/uint8-array/keys.js +4 -0
  2653. package/full/uint8-array/last-index-of.js +2 -0
  2654. package/full/uint8-array/map.js +2 -0
  2655. package/full/uint8-array/of.js +49 -0
  2656. package/full/uint8-array/reduce-right.js +2 -0
  2657. package/full/uint8-array/reduce.js +2 -0
  2658. package/full/uint8-array/reverse.js +2 -0
  2659. package/full/uint8-array/set-from-base64.js +2 -0
  2660. package/full/uint8-array/set-from-hex.js +2 -0
  2661. package/full/uint8-array/set.js +2 -0
  2662. package/full/uint8-array/slice.js +2 -0
  2663. package/full/uint8-array/some.js +2 -0
  2664. package/full/uint8-array/sort.js +2 -0
  2665. package/full/uint8-array/subarray.js +2 -0
  2666. package/full/uint8-array/to-base64.js +2 -0
  2667. package/full/uint8-array/to-hex.js +2 -0
  2668. package/full/uint8-array/to-locale-string.js +2 -0
  2669. package/full/uint8-array/to-reversed.js +2 -0
  2670. package/full/uint8-array/to-sorted.js +2 -0
  2671. package/full/uint8-array/to-string.js +2 -0
  2672. package/full/uint8-array/unique-by.js +7 -0
  2673. package/full/uint8-array/values.js +5 -0
  2674. package/full/uint8-array/with.js +2 -0
  2675. package/full/uint8-clamped-array/at.js +2 -0
  2676. package/full/uint8-clamped-array/constructor.js +49 -0
  2677. package/full/uint8-clamped-array/copy-within.js +2 -0
  2678. package/full/uint8-clamped-array/entries.js +4 -0
  2679. package/full/uint8-clamped-array/every.js +2 -0
  2680. package/full/uint8-clamped-array/fill.js +2 -0
  2681. package/full/uint8-clamped-array/filter-reject.js +2 -0
  2682. package/full/uint8-clamped-array/filter.js +2 -0
  2683. package/full/uint8-clamped-array/find-index.js +2 -0
  2684. package/full/uint8-clamped-array/find-last-index.js +2 -0
  2685. package/full/uint8-clamped-array/find-last.js +2 -0
  2686. package/full/uint8-clamped-array/find.js +2 -0
  2687. package/full/uint8-clamped-array/for-each.js +2 -0
  2688. package/full/uint8-clamped-array/from.js +45 -0
  2689. package/full/uint8-clamped-array/includes.js +2 -0
  2690. package/full/uint8-clamped-array/index-of.js +2 -0
  2691. package/full/uint8-clamped-array/index.js +51 -0
  2692. package/full/uint8-clamped-array/iterator.js +4 -0
  2693. package/full/uint8-clamped-array/join.js +2 -0
  2694. package/full/uint8-clamped-array/keys.js +4 -0
  2695. package/full/uint8-clamped-array/last-index-of.js +2 -0
  2696. package/full/uint8-clamped-array/map.js +2 -0
  2697. package/full/uint8-clamped-array/of.js +45 -0
  2698. package/full/uint8-clamped-array/reduce-right.js +2 -0
  2699. package/full/uint8-clamped-array/reduce.js +2 -0
  2700. package/full/uint8-clamped-array/reverse.js +2 -0
  2701. package/full/uint8-clamped-array/set.js +2 -0
  2702. package/full/uint8-clamped-array/slice.js +2 -0
  2703. package/full/uint8-clamped-array/some.js +2 -0
  2704. package/full/uint8-clamped-array/sort.js +2 -0
  2705. package/full/uint8-clamped-array/subarray.js +2 -0
  2706. package/full/uint8-clamped-array/to-locale-string.js +2 -0
  2707. package/full/uint8-clamped-array/to-reversed.js +2 -0
  2708. package/full/uint8-clamped-array/to-sorted.js +2 -0
  2709. package/full/uint8-clamped-array/to-string.js +2 -0
  2710. package/full/uint8-clamped-array/unique-by.js +7 -0
  2711. package/full/uint8-clamped-array/values.js +5 -0
  2712. package/full/uint8-clamped-array/with.js +2 -0
  2713. package/full/uri-error/constructor.js +6 -0
  2714. package/full/uri-error/index.js +7 -0
  2715. package/full/uri-error/is-error.js +6 -0
  2716. package/full/url/can-parse.js +13 -2
  2717. package/full/url/constructor.js +18 -0
  2718. package/full/url/index.js +18 -2
  2719. package/full/url/parse.js +13 -2
  2720. package/full/url/to-json.js +10 -3
  2721. package/full/url-search-params/constructor.js +14 -0
  2722. package/full/url-search-params/index.js +12 -2
  2723. package/full/weak-map/constructor.js +12 -0
  2724. package/full/weak-map/from.js +6 -7
  2725. package/full/weak-map/get-or-insert-computed.js +9 -2
  2726. package/full/weak-map/get-or-insert.js +9 -2
  2727. package/full/weak-map/index.js +9 -8
  2728. package/full/weak-map/of.js +8 -7
  2729. package/full/weak-map/prototype/get-or-insert-computed.js +11 -0
  2730. package/full/weak-map/prototype/get-or-insert.js +11 -0
  2731. package/full/weak-set/constructor.js +10 -0
  2732. package/full/weak-set/from.js +4 -5
  2733. package/full/weak-set/index.js +7 -4
  2734. package/full/weak-set/of.js +6 -5
  2735. package/index.js +334 -1
  2736. package/internals/a-typed-array-constructor.js +10 -0
  2737. package/internals/a-typed-array.js +9 -0
  2738. package/internals/add-disposable-resource.js +2 -1
  2739. package/internals/add-to-unscopables.js +2 -2
  2740. package/internals/array-buffer-byte-length.js +3 -5
  2741. package/internals/array-buffer-is-detached.js +1 -2
  2742. package/internals/array-buffer-non-extensible.js +1 -1
  2743. package/internals/array-buffer-transfer.js +9 -7
  2744. package/internals/array-fill.js +2 -1
  2745. package/internals/array-includes.js +12 -29
  2746. package/internals/array-iteration-from-last.js +3 -5
  2747. package/internals/array-iteration.js +13 -30
  2748. package/internals/array-iterator-constructor.js +34 -0
  2749. package/internals/array-reduce.js +5 -7
  2750. package/internals/array-set-length.js +2 -8
  2751. package/internals/array-species-constructor.js +2 -1
  2752. package/internals/async-from-sync-iterator.js +11 -8
  2753. package/internals/async-iterator-close.js +7 -1
  2754. package/internals/async-iterator-create-proxy.js +26 -9
  2755. package/internals/async-iterator-iteration.js +7 -2
  2756. package/internals/async-iterator-prototype.js +2 -3
  2757. package/internals/base64-map.js +3 -4
  2758. package/internals/check-correctness-of-iteration.js +3 -3
  2759. package/internals/classof.js +2 -8
  2760. package/internals/collection-from.js +3 -0
  2761. package/internals/collection-strong.js +112 -86
  2762. package/internals/collection-weak.js +54 -67
  2763. package/internals/collection.js +5 -14
  2764. package/internals/copy-constructor-properties.js +6 -9
  2765. package/internals/create-non-enumerable-property.js +1 -5
  2766. package/internals/create-property-descriptor.js +1 -1
  2767. package/internals/create-property.js +1 -3
  2768. package/internals/data-view-int8-conversion-bug.js +7 -0
  2769. package/internals/define-built-in-accessor.js +2 -2
  2770. package/internals/define-built-in.js +1 -1
  2771. package/internals/define-built-ins.js +3 -1
  2772. package/internals/define-global-property.js +1 -4
  2773. package/internals/detach-transferable.js +2 -3
  2774. package/internals/document-create-element.js +1 -3
  2775. package/internals/dom-exception-constants.js +1 -1
  2776. package/internals/dom-iterables-define-method.js +24 -0
  2777. package/internals/dom-iterables.js +1 -1
  2778. package/internals/environment-is-ie11.js +4 -0
  2779. package/internals/error-stack-installable.js +0 -1
  2780. package/internals/export-typed-array-method.js +28 -0
  2781. package/internals/export-typed-array-static.js +28 -0
  2782. package/internals/export.js +9 -22
  2783. package/internals/fix-regexp-well-known-symbol-logic.js +1 -7
  2784. package/internals/flatten-into-array.js +2 -1
  2785. package/internals/function-apply.js +3 -9
  2786. package/internals/function-bind-context.js +2 -7
  2787. package/internals/function-bind.js +1 -33
  2788. package/internals/function-call.js +2 -6
  2789. package/internals/function-get-name.js +18 -0
  2790. package/internals/function-name.js +2 -5
  2791. package/internals/function-uncurry-this-accessor.js +0 -1
  2792. package/internals/function-uncurry-this.js +2 -11
  2793. package/internals/get-async-iterator-flattenable.js +3 -0
  2794. package/internals/get-built-in-static-method.js +7 -0
  2795. package/internals/get-built-in.js +3 -6
  2796. package/internals/get-internal-iterator.js +1 -0
  2797. package/internals/get-iterator-direct.js +1 -1
  2798. package/internals/get-iterator-flattenable.js +3 -0
  2799. package/internals/get-iterator-method.js +6 -5
  2800. package/internals/get-set-record.js +1 -1
  2801. package/internals/get-substitution.js +2 -3
  2802. package/internals/get-typed-array-constructor.js +6 -0
  2803. package/internals/inherit-if-required.js +6 -14
  2804. package/internals/internal-state-getter-for.js +14 -0
  2805. package/internals/internal-state.js +18 -57
  2806. package/internals/is-array-iterator-method.js +1 -2
  2807. package/internals/is-constructor.js +4 -6
  2808. package/internals/is-iterable.js +2 -6
  2809. package/internals/is-typed-array.js +7 -0
  2810. package/internals/iterator-cleanup-state.js +5 -0
  2811. package/internals/iterator-create-constructor.js +3 -9
  2812. package/internals/iterator-create-proxy.js +18 -12
  2813. package/internals/iterator-define.js +5 -94
  2814. package/internals/iterator-helper-without-closing-on-early-error.js +1 -1
  2815. package/internals/iterator-normalize-method.js +29 -0
  2816. package/internals/iterator-prototype.js +43 -0
  2817. package/internals/iterator-zip.js +1 -1
  2818. package/internals/iterators.js +1 -2
  2819. package/internals/make-built-in.js +12 -28
  2820. package/internals/map-helpers.js +3 -4
  2821. package/internals/map-native.js +12 -0
  2822. package/internals/microtask.js +3 -5
  2823. package/internals/native-raw-json.js +0 -1
  2824. package/internals/object-define-properties.js +1 -20
  2825. package/internals/object-define-property.js +1 -43
  2826. package/internals/object-get-own-property-descriptor.js +1 -20
  2827. package/internals/object-get-own-property-names-external.js +2 -3
  2828. package/internals/object-get-own-property-names.js +1 -9
  2829. package/internals/object-is-extensible.js +1 -1
  2830. package/internals/object-property-is-enumerable.js +1 -13
  2831. package/internals/object-set-prototype-of-simple.js +8 -0
  2832. package/internals/object-set-prototype-of.js +2 -2
  2833. package/internals/object-to-array.js +6 -20
  2834. package/internals/own-keys.js +2 -2
  2835. package/internals/parse-json-string.js +6 -7
  2836. package/internals/promise-constructor-detection.js +4 -4
  2837. package/internals/proxy-accessor.js +1 -1
  2838. package/internals/queue.js +1 -1
  2839. package/internals/regexp-exec-abstract.js +1 -0
  2840. package/internals/regexp-exec.js +3 -23
  2841. package/internals/regexp-flags-detection.js +6 -6
  2842. package/internals/regexp-sticky-helpers.js +2 -2
  2843. package/internals/regexp-unsupported-dot-all.js +3 -5
  2844. package/internals/regexp-unsupported-ncg.js +3 -5
  2845. package/internals/safe-get-built-in.js +1 -6
  2846. package/internals/set-helpers.js +3 -4
  2847. package/internals/set-method-accept-set-like.js +3 -3
  2848. package/internals/set-method-get-keys-before-cloning-detection.js +2 -4
  2849. package/internals/set-size.js +1 -3
  2850. package/internals/set-species.js +4 -5
  2851. package/internals/set-to-string-tag.js +1 -0
  2852. package/internals/shared-store.js +3 -3
  2853. package/internals/shared.js +1 -1
  2854. package/internals/string-cooked.js +2 -2
  2855. package/internals/string-multibyte.js +2 -5
  2856. package/internals/string-pad.js +4 -3
  2857. package/internals/string-parse.js +6 -6
  2858. package/internals/string-punycode-to-ascii.js +11 -17
  2859. package/internals/string-trim.js +1 -1
  2860. package/internals/symbol-constructor-detection.js +3 -5
  2861. package/internals/symbol-registry-detection.js +1 -1
  2862. package/internals/task.js +41 -54
  2863. package/internals/typed-array-constructor.js +37 -211
  2864. package/internals/typed-array-constructors-require-wrappers.js +9 -12
  2865. package/internals/typed-array-constructors.js +14 -0
  2866. package/internals/typed-array-core.js +66 -0
  2867. package/internals/typed-array-from-same-type-and-list.js +1 -1
  2868. package/internals/typed-array-from.js +2 -1
  2869. package/internals/uint8-from-base64.js +23 -27
  2870. package/internals/url-constructor-detection.js +4 -5
  2871. package/internals/weak-collections-unfreezing-bug.js +9 -0
  2872. package/internals/weak-map-helpers.js +2 -3
  2873. package/internals/weak-map-native.js +12 -0
  2874. package/internals/weak-set-helpers.js +2 -1
  2875. package/internals/well-known-symbol-define.js +1 -1
  2876. package/internals/well-known-symbol.js +1 -1
  2877. package/internals/wrap-error-constructor-with-cause.js +6 -7
  2878. package/modules/es.aggregate-error.cause.js +4 -1
  2879. package/modules/es.aggregate-error.constructor.js +10 -18
  2880. package/modules/es.array-buffer.constructor.js +42 -7
  2881. package/modules/es.array-buffer.detached.js +3 -3
  2882. package/modules/es.array-buffer.is-view.js +10 -5
  2883. package/modules/es.array-buffer.slice.js +9 -10
  2884. package/modules/es.array-buffer.species.js +6 -0
  2885. package/modules/es.array-buffer.to-string-tag.js +6 -0
  2886. package/modules/es.array-buffer.transfer-to-fixed-length.js +2 -1
  2887. package/modules/es.array-buffer.transfer.js +2 -1
  2888. package/modules/es.array.at.js +2 -1
  2889. package/modules/es.array.concat.js +2 -2
  2890. package/modules/es.array.copy-within.js +1 -1
  2891. package/modules/es.array.entries.js +19 -0
  2892. package/modules/es.array.fill.js +1 -1
  2893. package/modules/es.array.filter.js +1 -1
  2894. package/modules/es.array.find-index.js +2 -2
  2895. package/modules/es.array.find-last-index.js +2 -1
  2896. package/modules/es.array.find-last.js +2 -1
  2897. package/modules/es.array.find.js +2 -2
  2898. package/modules/es.array.flat-map.js +3 -1
  2899. package/modules/es.array.flat.js +3 -1
  2900. package/modules/es.array.from-async.js +50 -2
  2901. package/modules/es.array.from.js +53 -5
  2902. package/modules/es.array.includes.js +3 -2
  2903. package/modules/es.array.index-of.js +10 -13
  2904. package/modules/es.array.iterator.js +5 -57
  2905. package/modules/es.array.join.js +4 -8
  2906. package/modules/es.array.keys.js +19 -0
  2907. package/modules/es.array.last-index-of.js +14 -4
  2908. package/modules/es.array.map.js +1 -1
  2909. package/modules/es.array.of.js +1 -1
  2910. package/modules/es.array.push.js +1 -2
  2911. package/modules/es.array.reduce-right.js +1 -1
  2912. package/modules/es.array.reduce.js +1 -1
  2913. package/modules/es.array.reverse.js +2 -2
  2914. package/modules/es.array.slice.js +4 -4
  2915. package/modules/es.array.sort.js +11 -15
  2916. package/modules/es.array.splice.js +1 -1
  2917. package/modules/es.array.to-reversed.js +4 -3
  2918. package/modules/es.array.to-sorted.js +5 -3
  2919. package/modules/es.array.to-spliced.js +4 -3
  2920. package/modules/es.array.unshift.js +2 -6
  2921. package/modules/es.array.values.js +23 -0
  2922. package/modules/es.array.with.js +6 -5
  2923. package/modules/es.async-disposable-stack.constructor.js +16 -15
  2924. package/modules/es.async-iterator.async-dispose.js +5 -0
  2925. package/modules/es.data-view.constructor.js +41 -6
  2926. package/modules/es.data-view.get-float16.js +2 -2
  2927. package/modules/es.data-view.set-float16.js +5 -4
  2928. package/modules/es.data-view.set-int8.js +16 -0
  2929. package/modules/es.data-view.set-uint8.js +16 -0
  2930. package/modules/es.data-view.to-string-tag.js +6 -0
  2931. package/modules/es.date.to-json.js +4 -2
  2932. package/modules/es.disposable-stack.constructor.js +12 -15
  2933. package/modules/es.error.cause.js +1 -0
  2934. package/modules/es.error.is-error.js +3 -2
  2935. package/modules/es.function.has-instance.js +1 -2
  2936. package/modules/es.function.name.js +6 -17
  2937. package/modules/es.global-this.js +1 -1
  2938. package/modules/es.iterator.concat.js +5 -3
  2939. package/modules/es.iterator.constructor.js +20 -19
  2940. package/modules/es.iterator.dispose.js +2 -1
  2941. package/modules/es.iterator.drop.js +4 -2
  2942. package/modules/es.iterator.every.js +5 -5
  2943. package/modules/es.iterator.filter.js +4 -2
  2944. package/modules/es.iterator.find.js +5 -5
  2945. package/modules/es.iterator.flat-map.js +6 -4
  2946. package/modules/es.iterator.for-each.js +5 -5
  2947. package/modules/es.iterator.from.js +5 -3
  2948. package/modules/es.iterator.map.js +4 -2
  2949. package/modules/es.iterator.reduce.js +5 -5
  2950. package/modules/es.iterator.some.js +5 -5
  2951. package/modules/es.iterator.take.js +4 -2
  2952. package/modules/es.iterator.to-array.js +5 -4
  2953. package/modules/es.json.is-raw-json.js +2 -1
  2954. package/modules/es.json.parse.js +40 -46
  2955. package/modules/es.json.raw-json.js +7 -10
  2956. package/modules/es.json.stringify.js +11 -11
  2957. package/modules/es.json.to-string-tag.js +2 -2
  2958. package/modules/es.map.get-or-insert-computed.js +2 -1
  2959. package/modules/es.map.get-or-insert.js +2 -1
  2960. package/modules/es.map.group-by.js +5 -1
  2961. package/modules/es.map.species.js +6 -0
  2962. package/modules/es.math.acosh.js +1 -1
  2963. package/modules/es.math.asinh.js +1 -1
  2964. package/modules/es.math.atanh.js +1 -1
  2965. package/modules/es.math.cbrt.js +1 -1
  2966. package/modules/es.math.clz32.js +1 -1
  2967. package/modules/es.math.cosh.js +1 -1
  2968. package/modules/es.math.f16round.js +18 -3
  2969. package/modules/es.math.fround.js +9 -2
  2970. package/modules/es.math.hypot.js +1 -1
  2971. package/modules/es.math.imul.js +1 -1
  2972. package/modules/es.math.log10.js +1 -1
  2973. package/modules/es.math.log2.js +6 -2
  2974. package/modules/es.math.sign.js +1 -1
  2975. package/modules/es.math.sinh.js +1 -1
  2976. package/modules/es.math.sum-precise.js +2 -1
  2977. package/modules/es.math.tanh.js +1 -1
  2978. package/modules/es.math.trunc.js +1 -1
  2979. package/modules/es.number.constructor.js +6 -28
  2980. package/modules/es.number.epsilon.js +1 -1
  2981. package/modules/es.number.is-integer.js +1 -1
  2982. package/modules/es.number.is-nan.js +1 -1
  2983. package/modules/es.number.is-safe-integer.js +1 -1
  2984. package/modules/es.number.max-safe-integer.js +1 -1
  2985. package/modules/es.number.min-safe-integer.js +1 -1
  2986. package/modules/es.number.parse-float.js +5 -2
  2987. package/modules/es.number.parse-int.js +5 -2
  2988. package/modules/es.number.to-exponential.js +5 -13
  2989. package/modules/es.number.to-fixed.js +4 -6
  2990. package/modules/es.object.assign.js +54 -4
  2991. package/modules/es.object.define-getter.js +6 -8
  2992. package/modules/es.object.define-setter.js +6 -8
  2993. package/modules/es.object.entries.js +2 -1
  2994. package/modules/es.object.freeze.js +3 -6
  2995. package/modules/es.object.from-entries.js +3 -1
  2996. package/modules/es.object.get-own-property-descriptor.js +6 -7
  2997. package/modules/es.object.get-own-property-descriptors.js +5 -5
  2998. package/modules/es.object.get-own-property-names.js +1 -2
  2999. package/modules/es.object.get-own-property-symbols.js +1 -1
  3000. package/modules/es.object.get-prototype-of.js +4 -4
  3001. package/modules/es.object.group-by.js +6 -3
  3002. package/modules/es.object.has-own.js +2 -1
  3003. package/modules/es.object.is-extensible.js +1 -1
  3004. package/modules/es.object.is-frozen.js +2 -2
  3005. package/modules/es.object.is-sealed.js +2 -2
  3006. package/modules/es.object.is.js +1 -1
  3007. package/modules/es.object.keys.js +5 -4
  3008. package/modules/es.object.lookup-getter.js +14 -15
  3009. package/modules/es.object.lookup-setter.js +14 -15
  3010. package/modules/es.object.prevent-extensions.js +3 -6
  3011. package/modules/es.object.proto.js +3 -4
  3012. package/modules/es.object.seal.js +3 -6
  3013. package/modules/es.object.set-prototype-of.js +1 -1
  3014. package/modules/es.object.to-string.js +4 -4
  3015. package/modules/es.object.values.js +2 -1
  3016. package/modules/es.parse-float.js +18 -3
  3017. package/modules/es.parse-int.js +20 -3
  3018. package/modules/es.promise.all-settled.js +9 -1
  3019. package/modules/es.promise.all.js +8 -1
  3020. package/modules/es.promise.any.js +10 -1
  3021. package/modules/es.promise.catch.js +5 -4
  3022. package/modules/es.promise.constructor.js +10 -12
  3023. package/modules/es.promise.finally.js +7 -5
  3024. package/modules/es.promise.race.js +8 -1
  3025. package/modules/es.promise.reject.js +4 -1
  3026. package/modules/es.promise.resolve.js +4 -1
  3027. package/modules/es.promise.try.js +10 -6
  3028. package/modules/es.promise.with-resolvers.js +6 -2
  3029. package/modules/es.reflect.apply.js +1 -1
  3030. package/modules/es.reflect.construct.js +5 -5
  3031. package/modules/es.reflect.define-property.js +2 -3
  3032. package/modules/es.reflect.delete-property.js +3 -2
  3033. package/modules/es.reflect.get-own-property-descriptor.js +2 -3
  3034. package/modules/es.reflect.get-prototype-of.js +4 -4
  3035. package/modules/es.reflect.get.js +5 -4
  3036. package/modules/es.reflect.has.js +1 -1
  3037. package/modules/es.reflect.is-extensible.js +2 -3
  3038. package/modules/es.reflect.own-keys.js +1 -1
  3039. package/modules/es.reflect.prevent-extensions.js +4 -6
  3040. package/modules/es.reflect.set-prototype-of.js +2 -2
  3041. package/modules/es.reflect.set.js +3 -2
  3042. package/modules/es.regexp.constructor.js +38 -35
  3043. package/modules/es.regexp.dot-all.js +3 -3
  3044. package/modules/es.regexp.escape.js +22 -20
  3045. package/modules/es.regexp.exec.js +3 -1
  3046. package/modules/es.regexp.flags.js +3 -3
  3047. package/modules/es.regexp.sticky.js +2 -3
  3048. package/modules/es.regexp.test.js +2 -3
  3049. package/modules/es.set.difference.js +57 -0
  3050. package/modules/es.set.intersection.js +44 -0
  3051. package/modules/es.set.is-disjoint-from.js +31 -0
  3052. package/modules/es.set.is-subset-of.js +25 -0
  3053. package/modules/es.set.is-superset-of.js +28 -0
  3054. package/modules/es.set.species.js +6 -0
  3055. package/modules/es.set.symmetric-difference.js +31 -0
  3056. package/modules/es.set.union.js +26 -0
  3057. package/modules/es.string.anchor.js +1 -1
  3058. package/modules/es.string.at.js +24 -0
  3059. package/modules/es.string.big.js +1 -1
  3060. package/modules/es.string.blink.js +1 -1
  3061. package/modules/es.string.bold.js +1 -1
  3062. package/modules/es.string.code-point-at.js +1 -1
  3063. package/modules/es.string.ends-with.js +2 -3
  3064. package/modules/es.string.fixed.js +1 -1
  3065. package/modules/es.string.fontcolor.js +1 -1
  3066. package/modules/es.string.fontsize.js +1 -1
  3067. package/modules/es.string.from-code-point.js +1 -1
  3068. package/modules/es.string.includes.js +1 -1
  3069. package/modules/es.string.is-well-formed.js +2 -1
  3070. package/modules/es.string.italics.js +1 -1
  3071. package/modules/es.string.iterator.js +17 -10
  3072. package/modules/es.string.link.js +1 -1
  3073. package/modules/es.string.match-all.js +6 -5
  3074. package/modules/es.string.match.js +1 -1
  3075. package/modules/es.string.pad-end.js +2 -1
  3076. package/modules/es.string.pad-start.js +2 -1
  3077. package/modules/es.string.raw.js +2 -3
  3078. package/modules/es.string.repeat.js +14 -2
  3079. package/modules/es.string.replace-all.js +3 -1
  3080. package/modules/es.string.replace.js +1 -1
  3081. package/modules/es.string.search.js +1 -1
  3082. package/modules/es.string.small.js +1 -1
  3083. package/modules/es.string.split.js +1 -1
  3084. package/modules/es.string.starts-with.js +2 -3
  3085. package/modules/es.string.strike.js +1 -1
  3086. package/modules/es.string.sub.js +1 -1
  3087. package/modules/es.string.sup.js +1 -1
  3088. package/modules/es.string.to-well-formed.js +5 -5
  3089. package/modules/es.string.trim-end.js +2 -3
  3090. package/modules/es.string.trim-left.js +2 -1
  3091. package/modules/es.string.trim-right.js +2 -1
  3092. package/modules/es.string.trim-start.js +2 -3
  3093. package/modules/es.string.trim.js +1 -1
  3094. package/modules/es.suppressed-error.constructor.js +10 -20
  3095. package/modules/es.symbol.async-dispose.js +3 -4
  3096. package/modules/es.symbol.async-iterator.js +1 -0
  3097. package/modules/es.symbol.constructor.js +56 -71
  3098. package/modules/es.symbol.description.js +9 -10
  3099. package/modules/es.symbol.dispose.js +3 -4
  3100. package/modules/es.symbol.for.js +8 -5
  3101. package/modules/es.symbol.key-for.js +2 -2
  3102. package/modules/es.symbol.match-all.js +1 -0
  3103. package/modules/es.typed-array.at.js +3 -4
  3104. package/modules/es.typed-array.copy-within.js +5 -6
  3105. package/modules/es.typed-array.entries.js +19 -0
  3106. package/modules/es.typed-array.every.js +4 -4
  3107. package/modules/es.typed-array.fill.js +2 -4
  3108. package/modules/es.typed-array.filter.js +2 -4
  3109. package/modules/es.typed-array.find-index.js +2 -4
  3110. package/modules/es.typed-array.find-last-index.js +3 -4
  3111. package/modules/es.typed-array.find-last.js +3 -4
  3112. package/modules/es.typed-array.find.js +2 -4
  3113. package/modules/es.typed-array.for-each.js +4 -4
  3114. package/modules/es.typed-array.from.js +3 -3
  3115. package/modules/es.typed-array.includes.js +4 -5
  3116. package/modules/es.typed-array.index-of.js +7 -5
  3117. package/modules/es.typed-array.iterator.js +13 -34
  3118. package/modules/es.typed-array.join.js +2 -3
  3119. package/modules/es.typed-array.keys.js +19 -0
  3120. package/modules/es.typed-array.last-index-of.js +7 -7
  3121. package/modules/es.typed-array.map.js +3 -5
  3122. package/modules/es.typed-array.of.js +5 -7
  3123. package/modules/es.typed-array.reduce-right.js +2 -4
  3124. package/modules/es.typed-array.reduce.js +2 -4
  3125. package/modules/es.typed-array.reverse.js +2 -3
  3126. package/modules/es.typed-array.set.js +10 -14
  3127. package/modules/es.typed-array.slice.js +3 -6
  3128. package/modules/es.typed-array.some.js +4 -4
  3129. package/modules/es.typed-array.sort.js +7 -9
  3130. package/modules/es.typed-array.species.js +7 -0
  3131. package/modules/es.typed-array.subarray.js +8 -5
  3132. package/modules/es.typed-array.to-locale-string.js +7 -17
  3133. package/modules/es.typed-array.to-reversed.js +4 -5
  3134. package/modules/es.typed-array.to-sorted.js +5 -5
  3135. package/modules/es.typed-array.to-string-tag.js +19 -0
  3136. package/modules/es.typed-array.to-string.js +2 -5
  3137. package/modules/es.typed-array.values.js +14 -0
  3138. package/modules/es.typed-array.with.js +10 -11
  3139. package/modules/es.uint8-array.from-base64.js +10 -8
  3140. package/modules/es.uint8-array.from-hex.js +3 -3
  3141. package/modules/es.uint8-array.set-from-base64.js +5 -6
  3142. package/modules/es.uint8-array.set-from-hex.js +4 -4
  3143. package/modules/es.uint8-array.to-base64.js +6 -10
  3144. package/modules/es.uint8-array.to-hex.js +5 -6
  3145. package/modules/es.weak-map.constructor.js +5 -100
  3146. package/modules/es.weak-map.get-or-insert-computed.js +3 -2
  3147. package/modules/es.weak-map.get-or-insert.js +2 -1
  3148. package/modules/es.weak-set.constructor.js +3 -1
  3149. package/modules/esnext.array.filter-reject.js +2 -1
  3150. package/modules/esnext.array.is-template-object.js +4 -3
  3151. package/modules/esnext.array.unique-by.js +2 -1
  3152. package/modules/esnext.async-iterator.constructor.js +4 -2
  3153. package/modules/esnext.async-iterator.drop.js +4 -2
  3154. package/modules/esnext.async-iterator.every.js +3 -1
  3155. package/modules/esnext.async-iterator.filter.js +4 -2
  3156. package/modules/esnext.async-iterator.find.js +3 -1
  3157. package/modules/esnext.async-iterator.flat-map.js +4 -2
  3158. package/modules/esnext.async-iterator.for-each.js +3 -1
  3159. package/modules/esnext.async-iterator.from.js +3 -1
  3160. package/modules/esnext.async-iterator.map.js +57 -3
  3161. package/modules/esnext.async-iterator.reduce.js +7 -1
  3162. package/modules/esnext.async-iterator.some.js +3 -1
  3163. package/modules/esnext.async-iterator.take.js +4 -2
  3164. package/modules/esnext.async-iterator.to-array.js +3 -1
  3165. package/modules/esnext.data-view.get-uint8-clamped.js +2 -2
  3166. package/modules/esnext.data-view.set-uint8-clamped.js +17 -8
  3167. package/modules/esnext.function.demethodize.js +6 -2
  3168. package/modules/esnext.function.metadata.js +3 -3
  3169. package/modules/esnext.iterator.chunks.js +5 -3
  3170. package/modules/esnext.iterator.includes.js +43 -0
  3171. package/modules/esnext.iterator.join.js +32 -0
  3172. package/modules/esnext.iterator.range.js +100 -4
  3173. package/modules/esnext.iterator.to-async.js +3 -1
  3174. package/modules/esnext.iterator.windows.js +48 -3
  3175. package/modules/esnext.iterator.zip-keyed.js +7 -4
  3176. package/modules/esnext.iterator.zip.js +3 -1
  3177. package/modules/esnext.map.from.js +3 -1
  3178. package/modules/esnext.map.of.js +3 -1
  3179. package/modules/esnext.number.clamp.js +7 -3
  3180. package/modules/esnext.object.keys-length.js +14 -0
  3181. package/modules/esnext.promise.all-keyed.js +67 -0
  3182. package/modules/esnext.promise.all-settled-keyed.js +70 -0
  3183. package/modules/esnext.set.from.js +3 -1
  3184. package/modules/esnext.set.of.js +3 -1
  3185. package/modules/esnext.string.cooked.js +2 -1
  3186. package/modules/esnext.string.dedent.js +9 -12
  3187. package/modules/esnext.symbol.custom-matcher.js +1 -0
  3188. package/modules/esnext.symbol.is-registered-symbol.js +16 -2
  3189. package/modules/esnext.symbol.is-well-known-symbol.js +32 -2
  3190. package/modules/esnext.symbol.metadata.js +1 -0
  3191. package/modules/esnext.typed-array.filter-reject.js +3 -4
  3192. package/modules/esnext.typed-array.unique-by.js +4 -4
  3193. package/modules/esnext.weak-map.from.js +3 -1
  3194. package/modules/esnext.weak-map.of.js +3 -1
  3195. package/modules/esnext.weak-set.from.js +3 -1
  3196. package/modules/esnext.weak-set.of.js +3 -1
  3197. package/modules/web.atob.js +10 -6
  3198. package/modules/web.btoa.js +7 -2
  3199. package/modules/web.clear-immediate.js +2 -1
  3200. package/modules/web.dom-collections.entries.js +7 -0
  3201. package/modules/web.dom-collections.for-each.js +3 -21
  3202. package/modules/web.dom-collections.iterator.js +4 -33
  3203. package/modules/web.dom-collections.keys.js +7 -0
  3204. package/modules/web.dom-collections.values.js +8 -0
  3205. package/modules/web.dom-exception.constructor.js +22 -32
  3206. package/modules/web.dom-exception.stack.js +11 -11
  3207. package/modules/web.dom-exception.to-string-tag.js +1 -0
  3208. package/modules/web.queue-microtask.js +3 -4
  3209. package/modules/web.self.js +22 -29
  3210. package/modules/web.set-immediate.js +24 -4
  3211. package/modules/web.structured-clone.js +39 -32
  3212. package/modules/web.url-search-params.constructor.js +32 -39
  3213. package/modules/web.url-search-params.delete.js +5 -3
  3214. package/modules/web.url-search-params.has.js +2 -0
  3215. package/modules/web.url-search-params.size.js +4 -3
  3216. package/modules/web.url.can-parse.js +3 -1
  3217. package/modules/web.url.constructor.js +152 -171
  3218. package/modules/web.url.parse.js +3 -1
  3219. package/modules/web.url.to-json.js +7 -3
  3220. package/package.json +781 -4
  3221. package/proposals/accessible-object-hasownproperty.js +2 -1
  3222. package/proposals/array-buffer-base64.js +7 -6
  3223. package/proposals/array-buffer-transfer.js +5 -3
  3224. package/proposals/array-filtering.js +1 -4
  3225. package/proposals/array-find-from-last.js +6 -5
  3226. package/proposals/array-flat-map.js +1 -0
  3227. package/proposals/array-from-async.js +10 -3
  3228. package/proposals/array-grouping.js +8 -4
  3229. package/proposals/array-includes.js +1 -0
  3230. package/proposals/array-is-template-object.js +1 -0
  3231. package/proposals/array-unique.js +6 -1
  3232. package/proposals/async-iteration.js +1 -0
  3233. package/proposals/async-iterator-helpers.js +11 -0
  3234. package/proposals/change-array-by-copy.js +9 -9
  3235. package/proposals/collection-of-from.js +9 -0
  3236. package/proposals/data-view-get-set-uint8-clamped.js +1 -0
  3237. package/proposals/decorator-metadata.js +3 -2
  3238. package/proposals/error-cause.js +6 -0
  3239. package/proposals/explicit-resource-management.js +13 -7
  3240. package/proposals/extractors.js +1 -0
  3241. package/proposals/float16.js +5 -3
  3242. package/proposals/function-demethodize.js +1 -0
  3243. package/proposals/global-this.js +2 -4
  3244. package/proposals/is-error.js +2 -1
  3245. package/proposals/iterator-chunking.js +3 -1
  3246. package/proposals/iterator-helpers.js +18 -6
  3247. package/proposals/iterator-includes.js +9 -0
  3248. package/proposals/iterator-join.js +9 -0
  3249. package/proposals/iterator-range.js +3 -1
  3250. package/proposals/iterator-sequencing.js +7 -1
  3251. package/proposals/joint-iteration.js +7 -0
  3252. package/proposals/json-parse-with-source.js +6 -3
  3253. package/proposals/map-upsert.js +11 -8
  3254. package/proposals/math-clamp.js +2 -1
  3255. package/proposals/math-sum.js +6 -1
  3256. package/proposals/object-from-entries.js +5 -0
  3257. package/proposals/object-getownpropertydescriptors.js +1 -0
  3258. package/proposals/object-keys-length.js +4 -0
  3259. package/proposals/object-values-entries.js +1 -0
  3260. package/proposals/pattern-matching.js +2 -3
  3261. package/proposals/promise-all-keyed.js +11 -0
  3262. package/proposals/promise-all-settled.js +10 -1
  3263. package/proposals/promise-any.js +11 -2
  3264. package/proposals/promise-finally.js +3 -0
  3265. package/proposals/promise-try.js +6 -1
  3266. package/proposals/promise-with-resolvers.js +6 -1
  3267. package/proposals/regexp-dotall-flag.js +1 -0
  3268. package/proposals/regexp-escaping.js +4 -1
  3269. package/proposals/regexp-named-groups.js +1 -0
  3270. package/proposals/relative-indexing-method.js +4 -3
  3271. package/proposals/set-methods.js +13 -15
  3272. package/proposals/string-cooked.js +1 -0
  3273. package/proposals/string-dedent.js +7 -0
  3274. package/proposals/string-left-right-trim.js +4 -1
  3275. package/proposals/string-match-all.js +4 -1
  3276. package/proposals/string-padding.js +2 -0
  3277. package/proposals/string-replace-all.js +4 -3
  3278. package/proposals/symbol-description.js +1 -0
  3279. package/proposals/symbol-predicates.js +6 -2
  3280. package/proposals/well-formed-stringify.js +2 -0
  3281. package/proposals/well-formed-unicode-strings.js +3 -2
  3282. package/stable/aggregate-error/constructor.js +11 -0
  3283. package/stable/aggregate-error/index.js +12 -0
  3284. package/stable/aggregate-error/is-error.js +6 -0
  3285. package/stable/array/at.js +4 -2
  3286. package/stable/array/concat.js +4 -2
  3287. package/stable/array/copy-within.js +4 -2
  3288. package/stable/array/entries.js +5 -2
  3289. package/stable/array/fill.js +4 -2
  3290. package/stable/array/filter.js +4 -2
  3291. package/stable/array/find-index.js +4 -2
  3292. package/stable/array/find-last-index.js +5 -1
  3293. package/stable/array/find-last.js +5 -1
  3294. package/stable/array/find.js +4 -2
  3295. package/stable/array/flat-map.js +5 -2
  3296. package/stable/array/flat.js +5 -2
  3297. package/stable/array/from-async.js +12 -2
  3298. package/stable/array/from.js +8 -2
  3299. package/stable/array/includes.js +4 -2
  3300. package/stable/array/index-of.js +4 -2
  3301. package/stable/array/index.js +48 -2
  3302. package/stable/array/instance/at.js +11 -0
  3303. package/stable/array/instance/concat.js +11 -0
  3304. package/stable/array/instance/copy-within.js +11 -0
  3305. package/stable/array/instance/entries.js +11 -0
  3306. package/stable/array/instance/fill.js +11 -0
  3307. package/stable/array/instance/filter.js +11 -0
  3308. package/stable/array/instance/find-index.js +11 -0
  3309. package/stable/array/instance/find-last-index.js +11 -0
  3310. package/stable/array/instance/find-last.js +11 -0
  3311. package/stable/array/instance/find.js +11 -0
  3312. package/stable/array/instance/flat-map.js +11 -0
  3313. package/stable/array/instance/flat.js +11 -0
  3314. package/stable/array/instance/includes.js +11 -0
  3315. package/stable/array/instance/index-of.js +11 -0
  3316. package/stable/array/instance/join.js +11 -0
  3317. package/stable/array/instance/keys.js +11 -0
  3318. package/stable/array/instance/last-index-of.js +11 -0
  3319. package/stable/array/instance/map.js +11 -0
  3320. package/stable/array/instance/push.js +11 -0
  3321. package/stable/array/instance/reduce-right.js +11 -0
  3322. package/stable/array/instance/reduce.js +11 -0
  3323. package/stable/array/instance/reverse.js +11 -0
  3324. package/stable/array/instance/slice.js +11 -0
  3325. package/stable/array/instance/sort.js +11 -0
  3326. package/stable/array/instance/splice.js +11 -0
  3327. package/stable/array/instance/to-reversed.js +11 -0
  3328. package/stable/array/instance/to-sorted.js +11 -0
  3329. package/stable/array/instance/to-spliced.js +11 -0
  3330. package/stable/array/instance/unshift.js +11 -0
  3331. package/stable/array/instance/values.js +11 -0
  3332. package/stable/array/instance/with.js +11 -0
  3333. package/stable/array/iterator.js +6 -2
  3334. package/stable/array/join.js +4 -2
  3335. package/stable/array/keys.js +5 -2
  3336. package/stable/array/last-index-of.js +4 -2
  3337. package/stable/array/map.js +4 -2
  3338. package/stable/array/of.js +4 -2
  3339. package/stable/array/prototype/at.js +6 -0
  3340. package/stable/array/prototype/concat.js +6 -0
  3341. package/stable/array/prototype/copy-within.js +6 -0
  3342. package/stable/array/prototype/entries.js +7 -0
  3343. package/stable/array/prototype/fill.js +6 -0
  3344. package/stable/array/prototype/filter.js +6 -0
  3345. package/stable/array/prototype/find-index.js +6 -0
  3346. package/stable/array/prototype/find-last-index.js +6 -0
  3347. package/stable/array/prototype/find-last.js +6 -0
  3348. package/stable/array/prototype/find.js +6 -0
  3349. package/stable/array/prototype/flat-map.js +7 -0
  3350. package/stable/array/prototype/flat.js +7 -0
  3351. package/stable/array/prototype/includes.js +6 -0
  3352. package/stable/array/prototype/index-of.js +6 -0
  3353. package/stable/array/prototype/iterator.js +7 -0
  3354. package/stable/array/prototype/join.js +6 -0
  3355. package/stable/array/prototype/keys.js +7 -0
  3356. package/stable/array/prototype/last-index-of.js +6 -0
  3357. package/stable/array/prototype/map.js +6 -0
  3358. package/stable/array/prototype/push.js +6 -0
  3359. package/stable/array/prototype/reduce-right.js +6 -0
  3360. package/stable/array/prototype/reduce.js +6 -0
  3361. package/stable/array/prototype/reverse.js +6 -0
  3362. package/stable/array/prototype/slice.js +6 -0
  3363. package/stable/array/prototype/sort.js +6 -0
  3364. package/stable/array/prototype/splice.js +6 -0
  3365. package/stable/array/prototype/to-reversed.js +6 -0
  3366. package/stable/array/prototype/to-sorted.js +7 -0
  3367. package/stable/array/prototype/to-spliced.js +6 -0
  3368. package/stable/array/prototype/unshift.js +6 -0
  3369. package/stable/array/prototype/values.js +10 -0
  3370. package/stable/array/prototype/with.js +6 -0
  3371. package/stable/array/push.js +4 -2
  3372. package/stable/array/reduce-right.js +4 -2
  3373. package/stable/array/reduce.js +4 -2
  3374. package/stable/array/reverse.js +4 -2
  3375. package/stable/array/slice.js +4 -2
  3376. package/stable/array/sort.js +4 -2
  3377. package/stable/array/splice.js +4 -2
  3378. package/stable/array/to-reversed.js +4 -2
  3379. package/stable/array/to-sorted.js +5 -2
  3380. package/stable/array/to-spliced.js +4 -2
  3381. package/stable/array/unshift.js +4 -2
  3382. package/stable/array/values.js +8 -2
  3383. package/stable/array/with.js +4 -2
  3384. package/stable/array-buffer/constructor.js +11 -2
  3385. package/stable/array-buffer/detached.js +1 -3
  3386. package/stable/array-buffer/index.js +12 -2
  3387. package/stable/array-buffer/is-view.js +4 -2
  3388. package/stable/array-buffer/slice.js +1 -3
  3389. package/stable/array-buffer/transfer-to-fixed-length.js +2 -3
  3390. package/stable/array-buffer/transfer.js +2 -3
  3391. package/stable/async-disposable-stack/constructor.js +12 -2
  3392. package/stable/async-disposable-stack/index.js +12 -2
  3393. package/stable/async-iterator/index.js +10 -1
  3394. package/stable/atob.js +2 -2
  3395. package/stable/btoa.js +2 -2
  3396. package/stable/clear-immediate.js +2 -1
  3397. package/stable/data-view/constructor.js +13 -0
  3398. package/stable/data-view/get-float16.js +1 -3
  3399. package/stable/data-view/index.js +11 -2
  3400. package/stable/data-view/set-float16.js +2 -3
  3401. package/stable/date/index.js +5 -2
  3402. package/stable/date/prototype/to-json.js +6 -0
  3403. package/stable/date/to-json.js +4 -2
  3404. package/stable/disposable-stack/constructor.js +7 -2
  3405. package/stable/disposable-stack/index.js +7 -2
  3406. package/stable/dom-collections/entries.js +4 -0
  3407. package/stable/dom-collections/for-each.js +0 -4
  3408. package/stable/dom-collections/index.js +7 -11
  3409. package/stable/dom-collections/instance/entries.js +21 -0
  3410. package/stable/dom-collections/instance/for-each.js +19 -0
  3411. package/stable/dom-collections/instance/keys.js +21 -0
  3412. package/stable/dom-collections/instance/values.js +21 -0
  3413. package/stable/dom-collections/iterator.js +1 -3
  3414. package/stable/dom-collections/keys.js +4 -0
  3415. package/stable/dom-collections/prototype/entries.js +8 -0
  3416. package/stable/dom-collections/prototype/for-each.js +6 -0
  3417. package/stable/dom-collections/prototype/keys.js +8 -0
  3418. package/stable/dom-collections/prototype/values.js +8 -0
  3419. package/stable/dom-collections/values.js +4 -0
  3420. package/stable/dom-exception/constructor.js +3 -1
  3421. package/stable/dom-exception/index.js +2 -1
  3422. package/stable/error/constructor.js +4 -2
  3423. package/stable/error/index.js +5 -2
  3424. package/stable/error/is-error.js +4 -2
  3425. package/stable/eval-error/constructor.js +6 -0
  3426. package/stable/eval-error/index.js +7 -0
  3427. package/stable/eval-error/is-error.js +6 -0
  3428. package/stable/float32-array/at.js +2 -0
  3429. package/stable/float32-array/constructor.js +46 -0
  3430. package/stable/float32-array/copy-within.js +2 -0
  3431. package/stable/float32-array/entries.js +4 -0
  3432. package/stable/float32-array/every.js +2 -0
  3433. package/stable/float32-array/fill.js +2 -0
  3434. package/stable/float32-array/filter.js +2 -0
  3435. package/stable/float32-array/find-index.js +2 -0
  3436. package/stable/float32-array/find-last-index.js +2 -0
  3437. package/stable/float32-array/find-last.js +2 -0
  3438. package/stable/float32-array/find.js +2 -0
  3439. package/stable/float32-array/for-each.js +2 -0
  3440. package/stable/float32-array/from.js +42 -0
  3441. package/stable/float32-array/includes.js +2 -0
  3442. package/stable/float32-array/index-of.js +2 -0
  3443. package/stable/float32-array/index.js +48 -0
  3444. package/stable/float32-array/iterator.js +4 -0
  3445. package/stable/float32-array/join.js +2 -0
  3446. package/stable/float32-array/keys.js +4 -0
  3447. package/stable/float32-array/last-index-of.js +2 -0
  3448. package/stable/float32-array/map.js +2 -0
  3449. package/stable/float32-array/of.js +40 -0
  3450. package/stable/float32-array/reduce-right.js +2 -0
  3451. package/stable/float32-array/reduce.js +2 -0
  3452. package/stable/float32-array/reverse.js +2 -0
  3453. package/stable/float32-array/set.js +2 -0
  3454. package/stable/float32-array/slice.js +2 -0
  3455. package/stable/float32-array/some.js +2 -0
  3456. package/stable/float32-array/sort.js +2 -0
  3457. package/stable/float32-array/subarray.js +2 -0
  3458. package/stable/float32-array/to-locale-string.js +2 -0
  3459. package/stable/float32-array/to-reversed.js +2 -0
  3460. package/stable/float32-array/to-sorted.js +2 -0
  3461. package/stable/float32-array/to-string.js +2 -0
  3462. package/stable/float32-array/values.js +5 -0
  3463. package/stable/float32-array/with.js +2 -0
  3464. package/stable/float64-array/at.js +2 -0
  3465. package/stable/float64-array/constructor.js +46 -0
  3466. package/stable/float64-array/copy-within.js +2 -0
  3467. package/stable/float64-array/entries.js +4 -0
  3468. package/stable/float64-array/every.js +2 -0
  3469. package/stable/float64-array/fill.js +2 -0
  3470. package/stable/float64-array/filter.js +2 -0
  3471. package/stable/float64-array/find-index.js +2 -0
  3472. package/stable/float64-array/find-last-index.js +2 -0
  3473. package/stable/float64-array/find-last.js +2 -0
  3474. package/stable/float64-array/find.js +2 -0
  3475. package/stable/float64-array/for-each.js +2 -0
  3476. package/stable/float64-array/from.js +42 -0
  3477. package/stable/float64-array/includes.js +2 -0
  3478. package/stable/float64-array/index-of.js +2 -0
  3479. package/stable/float64-array/index.js +48 -0
  3480. package/stable/float64-array/iterator.js +4 -0
  3481. package/stable/float64-array/join.js +2 -0
  3482. package/stable/float64-array/keys.js +4 -0
  3483. package/stable/float64-array/last-index-of.js +2 -0
  3484. package/stable/float64-array/map.js +2 -0
  3485. package/stable/float64-array/of.js +40 -0
  3486. package/stable/float64-array/reduce-right.js +2 -0
  3487. package/stable/float64-array/reduce.js +2 -0
  3488. package/stable/float64-array/reverse.js +2 -0
  3489. package/stable/float64-array/set.js +2 -0
  3490. package/stable/float64-array/slice.js +2 -0
  3491. package/stable/float64-array/some.js +2 -0
  3492. package/stable/float64-array/sort.js +2 -0
  3493. package/stable/float64-array/subarray.js +2 -0
  3494. package/stable/float64-array/to-locale-string.js +2 -0
  3495. package/stable/float64-array/to-reversed.js +2 -0
  3496. package/stable/float64-array/to-sorted.js +2 -0
  3497. package/stable/float64-array/to-string.js +2 -0
  3498. package/stable/float64-array/values.js +5 -0
  3499. package/stable/float64-array/with.js +2 -0
  3500. package/stable/function/index.js +5 -2
  3501. package/stable/function/instance/name.js +9 -0
  3502. package/stable/function/name.js +4 -2
  3503. package/stable/get-iterator-method.js +6 -2
  3504. package/stable/get-iterator.js +6 -2
  3505. package/stable/global-this.js +4 -2
  3506. package/stable/index.js +114 -103
  3507. package/stable/instance/at.js +13 -2
  3508. package/stable/instance/code-point-at.js +10 -2
  3509. package/stable/instance/concat.js +9 -2
  3510. package/stable/instance/copy-within.js +9 -2
  3511. package/stable/instance/ends-with.js +10 -2
  3512. package/stable/instance/entries.js +10 -6
  3513. package/stable/instance/fill.js +9 -2
  3514. package/stable/instance/filter.js +9 -2
  3515. package/stable/instance/find-index.js +9 -2
  3516. package/stable/instance/find-last-index.js +9 -2
  3517. package/stable/instance/find-last.js +9 -2
  3518. package/stable/instance/find.js +9 -2
  3519. package/stable/instance/flags.js +9 -2
  3520. package/stable/instance/flat-map.js +9 -2
  3521. package/stable/instance/flat.js +9 -2
  3522. package/stable/instance/for-each.js +8 -8
  3523. package/stable/instance/includes.js +13 -2
  3524. package/stable/instance/index-of.js +9 -2
  3525. package/stable/instance/is-well-formed.js +10 -2
  3526. package/stable/instance/join.js +11 -0
  3527. package/stable/instance/keys.js +10 -6
  3528. package/stable/instance/last-index-of.js +9 -2
  3529. package/stable/instance/map.js +9 -2
  3530. package/stable/instance/match-all.js +10 -2
  3531. package/stable/instance/name.js +9 -0
  3532. package/stable/instance/pad-end.js +10 -2
  3533. package/stable/instance/pad-start.js +10 -2
  3534. package/stable/instance/push.js +9 -2
  3535. package/stable/instance/reduce-right.js +9 -2
  3536. package/stable/instance/reduce.js +9 -2
  3537. package/stable/instance/repeat.js +10 -2
  3538. package/stable/instance/replace-all.js +10 -2
  3539. package/stable/instance/reverse.js +9 -2
  3540. package/stable/instance/slice.js +9 -2
  3541. package/stable/instance/sort.js +9 -2
  3542. package/stable/instance/splice.js +9 -2
  3543. package/stable/instance/starts-with.js +10 -2
  3544. package/stable/instance/to-exponential.js +12 -0
  3545. package/stable/instance/to-fixed.js +12 -0
  3546. package/stable/instance/to-reversed.js +9 -2
  3547. package/stable/instance/to-sorted.js +9 -2
  3548. package/stable/instance/to-spliced.js +9 -2
  3549. package/stable/instance/to-well-formed.js +10 -2
  3550. package/stable/instance/trim-end.js +10 -2
  3551. package/stable/instance/trim-left.js +10 -2
  3552. package/stable/instance/trim-right.js +10 -2
  3553. package/stable/instance/trim-start.js +10 -2
  3554. package/stable/instance/trim.js +10 -2
  3555. package/stable/instance/unshift.js +9 -2
  3556. package/stable/instance/values.js +12 -5
  3557. package/stable/instance/with.js +9 -2
  3558. package/stable/int16-array/at.js +2 -0
  3559. package/stable/int16-array/constructor.js +46 -0
  3560. package/stable/int16-array/copy-within.js +2 -0
  3561. package/stable/int16-array/entries.js +4 -0
  3562. package/stable/int16-array/every.js +2 -0
  3563. package/stable/int16-array/fill.js +2 -0
  3564. package/stable/int16-array/filter.js +2 -0
  3565. package/stable/int16-array/find-index.js +2 -0
  3566. package/stable/int16-array/find-last-index.js +2 -0
  3567. package/stable/int16-array/find-last.js +2 -0
  3568. package/stable/int16-array/find.js +2 -0
  3569. package/stable/int16-array/for-each.js +2 -0
  3570. package/stable/int16-array/from.js +42 -0
  3571. package/stable/int16-array/includes.js +2 -0
  3572. package/stable/int16-array/index-of.js +2 -0
  3573. package/stable/int16-array/index.js +48 -0
  3574. package/stable/int16-array/iterator.js +4 -0
  3575. package/stable/int16-array/join.js +2 -0
  3576. package/stable/int16-array/keys.js +4 -0
  3577. package/stable/int16-array/last-index-of.js +2 -0
  3578. package/stable/int16-array/map.js +2 -0
  3579. package/stable/int16-array/of.js +40 -0
  3580. package/stable/int16-array/reduce-right.js +2 -0
  3581. package/stable/int16-array/reduce.js +2 -0
  3582. package/stable/int16-array/reverse.js +2 -0
  3583. package/stable/int16-array/set.js +2 -0
  3584. package/stable/int16-array/slice.js +2 -0
  3585. package/stable/int16-array/some.js +2 -0
  3586. package/stable/int16-array/sort.js +2 -0
  3587. package/stable/int16-array/subarray.js +2 -0
  3588. package/stable/int16-array/to-locale-string.js +2 -0
  3589. package/stable/int16-array/to-reversed.js +2 -0
  3590. package/stable/int16-array/to-sorted.js +2 -0
  3591. package/stable/int16-array/to-string.js +2 -0
  3592. package/stable/int16-array/values.js +5 -0
  3593. package/stable/int16-array/with.js +2 -0
  3594. package/stable/int32-array/at.js +2 -0
  3595. package/stable/int32-array/constructor.js +46 -0
  3596. package/stable/int32-array/copy-within.js +2 -0
  3597. package/stable/int32-array/entries.js +4 -0
  3598. package/stable/int32-array/every.js +2 -0
  3599. package/stable/int32-array/fill.js +2 -0
  3600. package/stable/int32-array/filter.js +2 -0
  3601. package/stable/int32-array/find-index.js +2 -0
  3602. package/stable/int32-array/find-last-index.js +2 -0
  3603. package/stable/int32-array/find-last.js +2 -0
  3604. package/stable/int32-array/find.js +2 -0
  3605. package/stable/int32-array/for-each.js +2 -0
  3606. package/stable/int32-array/from.js +42 -0
  3607. package/stable/int32-array/includes.js +2 -0
  3608. package/stable/int32-array/index-of.js +2 -0
  3609. package/stable/int32-array/index.js +48 -0
  3610. package/stable/int32-array/iterator.js +4 -0
  3611. package/stable/int32-array/join.js +2 -0
  3612. package/stable/int32-array/keys.js +4 -0
  3613. package/stable/int32-array/last-index-of.js +2 -0
  3614. package/stable/int32-array/map.js +2 -0
  3615. package/stable/int32-array/of.js +40 -0
  3616. package/stable/int32-array/reduce-right.js +2 -0
  3617. package/stable/int32-array/reduce.js +2 -0
  3618. package/stable/int32-array/reverse.js +2 -0
  3619. package/stable/int32-array/set.js +2 -0
  3620. package/stable/int32-array/slice.js +2 -0
  3621. package/stable/int32-array/some.js +2 -0
  3622. package/stable/int32-array/sort.js +2 -0
  3623. package/stable/int32-array/subarray.js +2 -0
  3624. package/stable/int32-array/to-locale-string.js +2 -0
  3625. package/stable/int32-array/to-reversed.js +2 -0
  3626. package/stable/int32-array/to-sorted.js +2 -0
  3627. package/stable/int32-array/to-string.js +2 -0
  3628. package/stable/int32-array/values.js +5 -0
  3629. package/stable/int32-array/with.js +2 -0
  3630. package/stable/int8-array/at.js +2 -0
  3631. package/stable/int8-array/constructor.js +46 -0
  3632. package/stable/int8-array/copy-within.js +2 -0
  3633. package/stable/int8-array/entries.js +4 -0
  3634. package/stable/int8-array/every.js +2 -0
  3635. package/stable/int8-array/fill.js +2 -0
  3636. package/stable/int8-array/filter.js +2 -0
  3637. package/stable/int8-array/find-index.js +2 -0
  3638. package/stable/int8-array/find-last-index.js +2 -0
  3639. package/stable/int8-array/find-last.js +2 -0
  3640. package/stable/int8-array/find.js +2 -0
  3641. package/stable/int8-array/for-each.js +2 -0
  3642. package/stable/int8-array/from.js +42 -0
  3643. package/stable/int8-array/includes.js +2 -0
  3644. package/stable/int8-array/index-of.js +2 -0
  3645. package/stable/int8-array/index.js +48 -0
  3646. package/stable/int8-array/iterator.js +4 -0
  3647. package/stable/int8-array/join.js +2 -0
  3648. package/stable/int8-array/keys.js +4 -0
  3649. package/stable/int8-array/last-index-of.js +2 -0
  3650. package/stable/int8-array/map.js +2 -0
  3651. package/stable/int8-array/of.js +40 -0
  3652. package/stable/int8-array/reduce-right.js +2 -0
  3653. package/stable/int8-array/reduce.js +2 -0
  3654. package/stable/int8-array/reverse.js +2 -0
  3655. package/stable/int8-array/set.js +2 -0
  3656. package/stable/int8-array/slice.js +2 -0
  3657. package/stable/int8-array/some.js +2 -0
  3658. package/stable/int8-array/sort.js +2 -0
  3659. package/stable/int8-array/subarray.js +2 -0
  3660. package/stable/int8-array/to-locale-string.js +2 -0
  3661. package/stable/int8-array/to-reversed.js +2 -0
  3662. package/stable/int8-array/to-sorted.js +2 -0
  3663. package/stable/int8-array/to-string.js +2 -0
  3664. package/stable/int8-array/values.js +5 -0
  3665. package/stable/int8-array/with.js +2 -0
  3666. package/stable/is-iterable.js +6 -2
  3667. package/stable/iterator/concat.js +21 -3
  3668. package/stable/iterator/constructor.js +22 -0
  3669. package/stable/iterator/drop.js +6 -2
  3670. package/stable/iterator/every.js +9 -2
  3671. package/stable/iterator/filter.js +6 -2
  3672. package/stable/iterator/find.js +9 -2
  3673. package/stable/iterator/flat-map.js +8 -2
  3674. package/stable/iterator/for-each.js +9 -2
  3675. package/stable/iterator/from.js +20 -2
  3676. package/stable/iterator/index.js +21 -2
  3677. package/stable/iterator/map.js +6 -2
  3678. package/stable/iterator/prototype/drop.js +8 -0
  3679. package/stable/iterator/prototype/every.js +11 -0
  3680. package/stable/iterator/prototype/filter.js +8 -0
  3681. package/stable/iterator/prototype/find.js +11 -0
  3682. package/stable/iterator/prototype/flat-map.js +11 -0
  3683. package/stable/iterator/prototype/for-each.js +11 -0
  3684. package/stable/iterator/prototype/map.js +8 -0
  3685. package/stable/iterator/prototype/reduce.js +11 -0
  3686. package/stable/iterator/prototype/some.js +11 -0
  3687. package/stable/iterator/prototype/take.js +8 -0
  3688. package/stable/iterator/prototype/to-array.js +11 -0
  3689. package/stable/iterator/reduce.js +9 -2
  3690. package/stable/iterator/some.js +9 -2
  3691. package/stable/iterator/take.js +6 -2
  3692. package/stable/iterator/to-array.js +9 -2
  3693. package/stable/json/index.js +10 -2
  3694. package/stable/json/is-raw-json.js +4 -2
  3695. package/stable/json/parse.js +4 -2
  3696. package/stable/json/raw-json.js +4 -2
  3697. package/stable/json/stringify.js +5 -2
  3698. package/stable/map/constructor.js +13 -0
  3699. package/stable/map/get-or-insert-computed.js +9 -2
  3700. package/stable/map/get-or-insert.js +9 -2
  3701. package/stable/map/group-by.js +12 -2
  3702. package/stable/map/index.js +11 -2
  3703. package/stable/map/prototype/get-or-insert-computed.js +11 -0
  3704. package/stable/map/prototype/get-or-insert.js +11 -0
  3705. package/stable/math/acosh.js +4 -2
  3706. package/stable/math/asinh.js +4 -2
  3707. package/stable/math/atanh.js +4 -2
  3708. package/stable/math/cbrt.js +4 -2
  3709. package/stable/math/clz32.js +4 -2
  3710. package/stable/math/cosh.js +4 -2
  3711. package/stable/math/expm1.js +4 -2
  3712. package/stable/math/f16round.js +4 -2
  3713. package/stable/math/fround.js +4 -2
  3714. package/stable/math/hypot.js +4 -2
  3715. package/stable/math/imul.js +4 -2
  3716. package/stable/math/index.js +27 -2
  3717. package/stable/math/log10.js +4 -2
  3718. package/stable/math/log1p.js +4 -2
  3719. package/stable/math/log2.js +4 -2
  3720. package/stable/math/sign.js +4 -2
  3721. package/stable/math/sinh.js +4 -2
  3722. package/stable/math/sum-precise.js +8 -2
  3723. package/stable/math/tanh.js +4 -2
  3724. package/stable/math/trunc.js +4 -2
  3725. package/stable/number/constructor.js +4 -2
  3726. package/stable/number/epsilon.js +4 -2
  3727. package/stable/number/index.js +18 -2
  3728. package/stable/number/instance/to-exponential.js +12 -0
  3729. package/stable/number/instance/to-fixed.js +12 -0
  3730. package/stable/number/is-finite.js +4 -2
  3731. package/stable/number/is-integer.js +4 -2
  3732. package/stable/number/is-nan.js +4 -2
  3733. package/stable/number/is-safe-integer.js +4 -2
  3734. package/stable/number/max-safe-integer.js +4 -2
  3735. package/stable/number/min-safe-integer.js +4 -2
  3736. package/stable/number/parse-float.js +5 -2
  3737. package/stable/number/parse-int.js +5 -2
  3738. package/stable/number/prototype/to-exponential.js +7 -0
  3739. package/stable/number/prototype/to-fixed.js +7 -0
  3740. package/stable/number/to-exponential.js +5 -2
  3741. package/stable/number/to-fixed.js +5 -2
  3742. package/stable/object/assign.js +4 -2
  3743. package/stable/object/create.js +5 -2
  3744. package/stable/object/define-getter.js +4 -2
  3745. package/stable/object/define-properties.js +5 -2
  3746. package/stable/object/define-property.js +5 -2
  3747. package/stable/object/define-setter.js +4 -2
  3748. package/stable/object/entries.js +4 -2
  3749. package/stable/object/freeze.js +4 -2
  3750. package/stable/object/from-entries.js +7 -2
  3751. package/stable/object/get-own-property-descriptor.js +7 -2
  3752. package/stable/object/get-own-property-descriptors.js +4 -2
  3753. package/stable/object/get-own-property-names.js +7 -2
  3754. package/stable/object/get-own-property-symbols.js +4 -2
  3755. package/stable/object/get-prototype-of.js +4 -2
  3756. package/stable/object/group-by.js +8 -2
  3757. package/stable/object/has-own.js +4 -2
  3758. package/stable/object/index.js +31 -2
  3759. package/stable/object/is-extensible.js +4 -2
  3760. package/stable/object/is-frozen.js +4 -2
  3761. package/stable/object/is-sealed.js +4 -2
  3762. package/stable/object/is.js +4 -2
  3763. package/stable/object/keys.js +4 -2
  3764. package/stable/object/lookup-getter.js +4 -2
  3765. package/stable/object/lookup-setter.js +4 -2
  3766. package/stable/object/prevent-extensions.js +4 -2
  3767. package/stable/object/proto.js +1 -3
  3768. package/stable/object/prototype/define-getter.js +6 -0
  3769. package/stable/object/prototype/define-setter.js +6 -0
  3770. package/stable/object/prototype/lookup-getter.js +6 -0
  3771. package/stable/object/prototype/lookup-setter.js +6 -0
  3772. package/stable/object/prototype/to-string.js +6 -0
  3773. package/stable/object/seal.js +4 -2
  3774. package/stable/object/set-prototype-of.js +4 -2
  3775. package/stable/object/to-string.js +4 -2
  3776. package/stable/object/values.js +4 -2
  3777. package/stable/parse-float.js +4 -2
  3778. package/stable/parse-int.js +4 -2
  3779. package/stable/promise/all-settled.js +18 -2
  3780. package/stable/promise/all.js +21 -0
  3781. package/stable/promise/any.js +19 -2
  3782. package/stable/promise/catch.js +8 -0
  3783. package/stable/promise/constructor.js +9 -0
  3784. package/stable/promise/finally.js +6 -2
  3785. package/stable/promise/index.js +18 -2
  3786. package/stable/promise/prototype/catch.js +8 -0
  3787. package/stable/promise/prototype/finally.js +8 -0
  3788. package/stable/promise/race.js +21 -0
  3789. package/stable/promise/reject.js +17 -0
  3790. package/stable/promise/resolve.js +17 -0
  3791. package/stable/promise/try.js +15 -2
  3792. package/stable/promise/with-resolvers.js +15 -2
  3793. package/stable/queue-microtask.js +4 -2
  3794. package/stable/range-error/constructor.js +6 -0
  3795. package/stable/range-error/index.js +7 -0
  3796. package/stable/range-error/is-error.js +6 -0
  3797. package/stable/reference-error/constructor.js +6 -0
  3798. package/stable/reference-error/index.js +7 -0
  3799. package/stable/reference-error/is-error.js +6 -0
  3800. package/stable/reflect/apply.js +4 -2
  3801. package/stable/reflect/construct.js +4 -2
  3802. package/stable/reflect/define-property.js +4 -2
  3803. package/stable/reflect/delete-property.js +4 -2
  3804. package/stable/reflect/get-own-property-descriptor.js +4 -2
  3805. package/stable/reflect/get-prototype-of.js +4 -2
  3806. package/stable/reflect/get.js +4 -2
  3807. package/stable/reflect/has.js +4 -2
  3808. package/stable/reflect/index.js +18 -2
  3809. package/stable/reflect/is-extensible.js +4 -2
  3810. package/stable/reflect/own-keys.js +4 -2
  3811. package/stable/reflect/prevent-extensions.js +4 -2
  3812. package/stable/reflect/set-prototype-of.js +4 -2
  3813. package/stable/reflect/set.js +4 -2
  3814. package/stable/regexp/constructor.js +4 -3
  3815. package/stable/regexp/dot-all.js +3 -3
  3816. package/stable/regexp/escape.js +6 -2
  3817. package/stable/regexp/exec.js +2 -0
  3818. package/stable/regexp/flags.js +4 -2
  3819. package/stable/regexp/index.js +14 -3
  3820. package/stable/regexp/instance/flags.js +11 -0
  3821. package/stable/regexp/match.js +2 -3
  3822. package/stable/regexp/replace.js +2 -3
  3823. package/stable/regexp/search.js +2 -3
  3824. package/stable/regexp/split.js +2 -3
  3825. package/stable/regexp/sticky.js +3 -3
  3826. package/stable/regexp/test.js +5 -2
  3827. package/stable/regexp/to-string.js +1 -3
  3828. package/stable/self.js +1 -0
  3829. package/stable/set/constructor.js +18 -0
  3830. package/stable/set/difference.js +9 -2
  3831. package/stable/set/index.js +15 -2
  3832. package/stable/set/intersection.js +9 -2
  3833. package/stable/set/is-disjoint-from.js +9 -2
  3834. package/stable/set/is-subset-of.js +9 -2
  3835. package/stable/set/is-superset-of.js +9 -2
  3836. package/stable/set/prototype/difference.js +11 -0
  3837. package/stable/set/prototype/intersection.js +11 -0
  3838. package/stable/set/prototype/is-disjoint-from.js +11 -0
  3839. package/stable/set/prototype/is-subset-of.js +11 -0
  3840. package/stable/set/prototype/is-superset-of.js +11 -0
  3841. package/stable/set/prototype/symmetric-difference.js +11 -0
  3842. package/stable/set/prototype/union.js +11 -0
  3843. package/stable/set/symmetric-difference.js +9 -2
  3844. package/stable/set/union.js +9 -2
  3845. package/stable/set-immediate.js +2 -1
  3846. package/stable/string/anchor.js +4 -2
  3847. package/stable/string/at.js +4 -2
  3848. package/stable/string/big.js +4 -2
  3849. package/stable/string/blink.js +4 -2
  3850. package/stable/string/bold.js +4 -2
  3851. package/stable/string/code-point-at.js +4 -2
  3852. package/stable/string/ends-with.js +4 -2
  3853. package/stable/string/fixed.js +4 -2
  3854. package/stable/string/fontcolor.js +4 -2
  3855. package/stable/string/fontsize.js +4 -2
  3856. package/stable/string/from-code-point.js +4 -2
  3857. package/stable/string/includes.js +4 -2
  3858. package/stable/string/index.js +42 -2
  3859. package/stable/string/instance/anchor.js +12 -0
  3860. package/stable/string/instance/at.js +12 -0
  3861. package/stable/string/instance/big.js +12 -0
  3862. package/stable/string/instance/blink.js +12 -0
  3863. package/stable/string/instance/bold.js +12 -0
  3864. package/stable/string/instance/code-point-at.js +12 -0
  3865. package/stable/string/instance/ends-with.js +12 -0
  3866. package/stable/string/instance/fixed.js +12 -0
  3867. package/stable/string/instance/fontcolor.js +12 -0
  3868. package/stable/string/instance/fontsize.js +12 -0
  3869. package/stable/string/instance/includes.js +12 -0
  3870. package/stable/string/instance/is-well-formed.js +12 -0
  3871. package/stable/string/instance/italics.js +12 -0
  3872. package/stable/string/instance/link.js +12 -0
  3873. package/stable/string/instance/match-all.js +12 -0
  3874. package/stable/string/instance/pad-end.js +12 -0
  3875. package/stable/string/instance/pad-start.js +12 -0
  3876. package/stable/string/instance/repeat.js +12 -0
  3877. package/stable/string/instance/replace-all.js +12 -0
  3878. package/stable/string/instance/small.js +12 -0
  3879. package/stable/string/instance/starts-with.js +12 -0
  3880. package/stable/string/instance/strike.js +12 -0
  3881. package/stable/string/instance/sub.js +12 -0
  3882. package/stable/string/instance/sup.js +12 -0
  3883. package/stable/string/instance/to-well-formed.js +12 -0
  3884. package/stable/string/instance/trim-end.js +12 -0
  3885. package/stable/string/instance/trim-left.js +12 -0
  3886. package/stable/string/instance/trim-right.js +12 -0
  3887. package/stable/string/instance/trim-start.js +12 -0
  3888. package/stable/string/instance/trim.js +12 -0
  3889. package/stable/string/is-well-formed.js +4 -2
  3890. package/stable/string/italics.js +4 -2
  3891. package/stable/string/iterator.js +6 -2
  3892. package/stable/string/link.js +4 -2
  3893. package/stable/string/match-all.js +6 -2
  3894. package/stable/string/match.js +2 -3
  3895. package/stable/string/pad-end.js +5 -2
  3896. package/stable/string/pad-start.js +5 -2
  3897. package/stable/string/prototype/anchor.js +6 -0
  3898. package/stable/string/prototype/at.js +6 -0
  3899. package/stable/string/prototype/big.js +6 -0
  3900. package/stable/string/prototype/blink.js +6 -0
  3901. package/stable/string/prototype/bold.js +6 -0
  3902. package/stable/string/prototype/code-point-at.js +6 -0
  3903. package/stable/string/prototype/ends-with.js +6 -0
  3904. package/stable/string/prototype/fixed.js +6 -0
  3905. package/stable/string/prototype/fontcolor.js +6 -0
  3906. package/stable/string/prototype/fontsize.js +6 -0
  3907. package/stable/string/prototype/includes.js +6 -0
  3908. package/stable/string/prototype/is-well-formed.js +6 -0
  3909. package/stable/string/prototype/italics.js +6 -0
  3910. package/stable/string/prototype/iterator.js +7 -0
  3911. package/stable/string/prototype/link.js +6 -0
  3912. package/stable/string/prototype/match-all.js +8 -0
  3913. package/stable/string/prototype/pad-end.js +7 -0
  3914. package/stable/string/prototype/pad-start.js +7 -0
  3915. package/stable/string/prototype/repeat.js +6 -0
  3916. package/stable/string/prototype/replace-all.js +8 -0
  3917. package/stable/string/prototype/small.js +6 -0
  3918. package/stable/string/prototype/starts-with.js +6 -0
  3919. package/stable/string/prototype/strike.js +6 -0
  3920. package/stable/string/prototype/sub.js +6 -0
  3921. package/stable/string/prototype/sup.js +6 -0
  3922. package/stable/string/prototype/to-well-formed.js +6 -0
  3923. package/stable/string/prototype/trim-end.js +6 -0
  3924. package/stable/string/prototype/trim-left.js +6 -0
  3925. package/stable/string/prototype/trim-right.js +6 -0
  3926. package/stable/string/prototype/trim-start.js +6 -0
  3927. package/stable/string/prototype/trim.js +6 -0
  3928. package/stable/string/raw.js +4 -2
  3929. package/stable/string/repeat.js +4 -2
  3930. package/stable/string/replace-all.js +6 -2
  3931. package/stable/string/replace.js +2 -3
  3932. package/stable/string/search.js +2 -3
  3933. package/stable/string/small.js +4 -2
  3934. package/stable/string/split.js +2 -3
  3935. package/stable/string/starts-with.js +4 -2
  3936. package/stable/string/strike.js +4 -2
  3937. package/stable/string/sub.js +4 -2
  3938. package/stable/string/sup.js +4 -2
  3939. package/stable/string/to-well-formed.js +4 -2
  3940. package/stable/string/trim-end.js +4 -2
  3941. package/stable/string/trim-left.js +4 -2
  3942. package/stable/string/trim-right.js +4 -2
  3943. package/stable/string/trim-start.js +4 -2
  3944. package/stable/string/trim.js +4 -2
  3945. package/stable/structured-clone.js +6 -5
  3946. package/stable/suppressed-error/constructor.js +6 -0
  3947. package/stable/suppressed-error/index.js +7 -0
  3948. package/stable/suppressed-error/is-error.js +6 -0
  3949. package/stable/symbol/async-dispose.js +10 -2
  3950. package/stable/symbol/async-iterator.js +4 -2
  3951. package/stable/symbol/constructor.js +8 -0
  3952. package/stable/symbol/description.js +1 -3
  3953. package/stable/symbol/dispose.js +5 -2
  3954. package/stable/symbol/for.js +7 -2
  3955. package/stable/symbol/has-instance.js +5 -2
  3956. package/stable/symbol/index.js +23 -3
  3957. package/stable/symbol/is-concat-spreadable.js +4 -2
  3958. package/stable/symbol/iterator.js +7 -2
  3959. package/stable/symbol/key-for.js +4 -2
  3960. package/stable/symbol/match-all.js +4 -2
  3961. package/stable/symbol/match.js +4 -2
  3962. package/stable/symbol/replace.js +4 -2
  3963. package/stable/symbol/search.js +4 -2
  3964. package/stable/symbol/species.js +4 -2
  3965. package/stable/symbol/split.js +4 -2
  3966. package/stable/symbol/to-primitive.js +5 -2
  3967. package/stable/symbol/to-string-tag.js +7 -2
  3968. package/stable/symbol/unscopables.js +4 -2
  3969. package/stable/syntax-error/constructor.js +6 -0
  3970. package/stable/syntax-error/index.js +7 -0
  3971. package/stable/syntax-error/is-error.js +6 -0
  3972. package/stable/type-error/constructor.js +6 -0
  3973. package/stable/type-error/index.js +7 -0
  3974. package/stable/type-error/is-error.js +6 -0
  3975. package/stable/typed-array/at.js +1 -3
  3976. package/stable/typed-array/constructors.js +18 -0
  3977. package/stable/typed-array/copy-within.js +1 -3
  3978. package/stable/typed-array/entries.js +3 -3
  3979. package/stable/typed-array/every.js +1 -3
  3980. package/stable/typed-array/fill.js +1 -3
  3981. package/stable/typed-array/filter.js +1 -3
  3982. package/stable/typed-array/find-index.js +1 -3
  3983. package/stable/typed-array/find-last-index.js +1 -1
  3984. package/stable/typed-array/find-last.js +1 -1
  3985. package/stable/typed-array/find.js +1 -3
  3986. package/stable/typed-array/for-each.js +1 -3
  3987. package/stable/typed-array/from-base64.js +43 -3
  3988. package/stable/typed-array/from-hex.js +43 -3
  3989. package/stable/typed-array/from.js +45 -3
  3990. package/stable/typed-array/includes.js +1 -3
  3991. package/stable/typed-array/index-of.js +1 -3
  3992. package/stable/typed-array/index.js +60 -2
  3993. package/stable/typed-array/iterator.js +3 -3
  3994. package/stable/typed-array/join.js +1 -3
  3995. package/stable/typed-array/keys.js +3 -3
  3996. package/stable/typed-array/last-index-of.js +1 -3
  3997. package/stable/typed-array/map.js +1 -3
  3998. package/stable/typed-array/methods.js +48 -3
  3999. package/stable/typed-array/of.js +43 -3
  4000. package/stable/typed-array/reduce-right.js +1 -3
  4001. package/stable/typed-array/reduce.js +1 -3
  4002. package/stable/typed-array/reverse.js +1 -3
  4003. package/stable/typed-array/set-from-base64.js +1 -3
  4004. package/stable/typed-array/set-from-hex.js +1 -3
  4005. package/stable/typed-array/set.js +1 -3
  4006. package/stable/typed-array/slice.js +1 -3
  4007. package/stable/typed-array/some.js +1 -3
  4008. package/stable/typed-array/sort.js +1 -3
  4009. package/stable/typed-array/subarray.js +1 -3
  4010. package/stable/typed-array/to-base64.js +1 -3
  4011. package/stable/typed-array/to-hex.js +1 -3
  4012. package/stable/typed-array/to-locale-string.js +1 -3
  4013. package/stable/typed-array/to-reversed.js +1 -3
  4014. package/stable/typed-array/to-sorted.js +1 -3
  4015. package/stable/typed-array/to-string.js +1 -3
  4016. package/stable/typed-array/values.js +4 -3
  4017. package/stable/typed-array/with.js +1 -3
  4018. package/stable/uint16-array/at.js +2 -0
  4019. package/stable/uint16-array/constructor.js +46 -0
  4020. package/stable/uint16-array/copy-within.js +2 -0
  4021. package/stable/uint16-array/entries.js +4 -0
  4022. package/stable/uint16-array/every.js +2 -0
  4023. package/stable/uint16-array/fill.js +2 -0
  4024. package/stable/uint16-array/filter.js +2 -0
  4025. package/stable/uint16-array/find-index.js +2 -0
  4026. package/stable/uint16-array/find-last-index.js +2 -0
  4027. package/stable/uint16-array/find-last.js +2 -0
  4028. package/stable/uint16-array/find.js +2 -0
  4029. package/stable/uint16-array/for-each.js +2 -0
  4030. package/stable/uint16-array/from.js +42 -0
  4031. package/stable/uint16-array/includes.js +2 -0
  4032. package/stable/uint16-array/index-of.js +2 -0
  4033. package/stable/uint16-array/index.js +48 -0
  4034. package/stable/uint16-array/iterator.js +4 -0
  4035. package/stable/uint16-array/join.js +2 -0
  4036. package/stable/uint16-array/keys.js +4 -0
  4037. package/stable/uint16-array/last-index-of.js +2 -0
  4038. package/stable/uint16-array/map.js +2 -0
  4039. package/stable/uint16-array/of.js +40 -0
  4040. package/stable/uint16-array/reduce-right.js +2 -0
  4041. package/stable/uint16-array/reduce.js +2 -0
  4042. package/stable/uint16-array/reverse.js +2 -0
  4043. package/stable/uint16-array/set.js +2 -0
  4044. package/stable/uint16-array/slice.js +2 -0
  4045. package/stable/uint16-array/some.js +2 -0
  4046. package/stable/uint16-array/sort.js +2 -0
  4047. package/stable/uint16-array/subarray.js +2 -0
  4048. package/stable/uint16-array/to-locale-string.js +2 -0
  4049. package/stable/uint16-array/to-reversed.js +2 -0
  4050. package/stable/uint16-array/to-sorted.js +2 -0
  4051. package/stable/uint16-array/to-string.js +2 -0
  4052. package/stable/uint16-array/values.js +5 -0
  4053. package/stable/uint16-array/with.js +2 -0
  4054. package/stable/uint32-array/at.js +2 -0
  4055. package/stable/uint32-array/constructor.js +46 -0
  4056. package/stable/uint32-array/copy-within.js +2 -0
  4057. package/stable/uint32-array/entries.js +4 -0
  4058. package/stable/uint32-array/every.js +2 -0
  4059. package/stable/uint32-array/fill.js +2 -0
  4060. package/stable/uint32-array/filter.js +2 -0
  4061. package/stable/uint32-array/find-index.js +2 -0
  4062. package/stable/uint32-array/find-last-index.js +2 -0
  4063. package/stable/uint32-array/find-last.js +2 -0
  4064. package/stable/uint32-array/find.js +2 -0
  4065. package/stable/uint32-array/for-each.js +2 -0
  4066. package/stable/uint32-array/from.js +42 -0
  4067. package/stable/uint32-array/includes.js +2 -0
  4068. package/stable/uint32-array/index-of.js +2 -0
  4069. package/stable/uint32-array/index.js +48 -0
  4070. package/stable/uint32-array/iterator.js +4 -0
  4071. package/stable/uint32-array/join.js +2 -0
  4072. package/stable/uint32-array/keys.js +4 -0
  4073. package/stable/uint32-array/last-index-of.js +2 -0
  4074. package/stable/uint32-array/map.js +2 -0
  4075. package/stable/uint32-array/of.js +40 -0
  4076. package/stable/uint32-array/reduce-right.js +2 -0
  4077. package/stable/uint32-array/reduce.js +2 -0
  4078. package/stable/uint32-array/reverse.js +2 -0
  4079. package/stable/uint32-array/set.js +2 -0
  4080. package/stable/uint32-array/slice.js +2 -0
  4081. package/stable/uint32-array/some.js +2 -0
  4082. package/stable/uint32-array/sort.js +2 -0
  4083. package/stable/uint32-array/subarray.js +2 -0
  4084. package/stable/uint32-array/to-locale-string.js +2 -0
  4085. package/stable/uint32-array/to-reversed.js +2 -0
  4086. package/stable/uint32-array/to-sorted.js +2 -0
  4087. package/stable/uint32-array/to-string.js +2 -0
  4088. package/stable/uint32-array/values.js +5 -0
  4089. package/stable/uint32-array/with.js +2 -0
  4090. package/stable/uint8-array/at.js +2 -0
  4091. package/stable/uint8-array/constructor.js +50 -0
  4092. package/stable/uint8-array/copy-within.js +2 -0
  4093. package/stable/uint8-array/entries.js +4 -0
  4094. package/stable/uint8-array/every.js +2 -0
  4095. package/stable/uint8-array/fill.js +2 -0
  4096. package/stable/uint8-array/filter.js +2 -0
  4097. package/stable/uint8-array/find-index.js +2 -0
  4098. package/stable/uint8-array/find-last-index.js +2 -0
  4099. package/stable/uint8-array/find-last.js +2 -0
  4100. package/stable/uint8-array/find.js +2 -0
  4101. package/stable/uint8-array/for-each.js +2 -0
  4102. package/stable/uint8-array/from-base64.js +44 -0
  4103. package/stable/uint8-array/from-hex.js +44 -0
  4104. package/stable/uint8-array/from.js +46 -0
  4105. package/stable/uint8-array/includes.js +2 -0
  4106. package/stable/uint8-array/index-of.js +2 -0
  4107. package/stable/uint8-array/index.js +54 -0
  4108. package/stable/uint8-array/iterator.js +4 -0
  4109. package/stable/uint8-array/join.js +2 -0
  4110. package/stable/uint8-array/keys.js +4 -0
  4111. package/stable/uint8-array/last-index-of.js +2 -0
  4112. package/stable/uint8-array/map.js +2 -0
  4113. package/stable/uint8-array/of.js +44 -0
  4114. package/stable/uint8-array/reduce-right.js +2 -0
  4115. package/stable/uint8-array/reduce.js +2 -0
  4116. package/stable/uint8-array/reverse.js +2 -0
  4117. package/stable/uint8-array/set-from-base64.js +2 -0
  4118. package/stable/uint8-array/set-from-hex.js +2 -0
  4119. package/stable/uint8-array/set.js +2 -0
  4120. package/stable/uint8-array/slice.js +2 -0
  4121. package/stable/uint8-array/some.js +2 -0
  4122. package/stable/uint8-array/sort.js +2 -0
  4123. package/stable/uint8-array/subarray.js +2 -0
  4124. package/stable/uint8-array/to-base64.js +2 -0
  4125. package/stable/uint8-array/to-hex.js +2 -0
  4126. package/stable/uint8-array/to-locale-string.js +2 -0
  4127. package/stable/uint8-array/to-reversed.js +2 -0
  4128. package/stable/uint8-array/to-sorted.js +2 -0
  4129. package/stable/uint8-array/to-string.js +2 -0
  4130. package/stable/uint8-array/values.js +5 -0
  4131. package/stable/uint8-array/with.js +2 -0
  4132. package/stable/uint8-clamped-array/at.js +2 -0
  4133. package/stable/uint8-clamped-array/constructor.js +46 -0
  4134. package/stable/uint8-clamped-array/copy-within.js +2 -0
  4135. package/stable/uint8-clamped-array/entries.js +4 -0
  4136. package/stable/uint8-clamped-array/every.js +2 -0
  4137. package/stable/uint8-clamped-array/fill.js +2 -0
  4138. package/stable/uint8-clamped-array/filter.js +2 -0
  4139. package/stable/uint8-clamped-array/find-index.js +2 -0
  4140. package/stable/uint8-clamped-array/find-last-index.js +2 -0
  4141. package/stable/uint8-clamped-array/find-last.js +2 -0
  4142. package/stable/uint8-clamped-array/find.js +2 -0
  4143. package/stable/uint8-clamped-array/for-each.js +2 -0
  4144. package/stable/uint8-clamped-array/from.js +42 -0
  4145. package/stable/uint8-clamped-array/includes.js +2 -0
  4146. package/stable/uint8-clamped-array/index-of.js +2 -0
  4147. package/stable/uint8-clamped-array/index.js +48 -0
  4148. package/stable/uint8-clamped-array/iterator.js +4 -0
  4149. package/stable/uint8-clamped-array/join.js +2 -0
  4150. package/stable/uint8-clamped-array/keys.js +4 -0
  4151. package/stable/uint8-clamped-array/last-index-of.js +2 -0
  4152. package/stable/uint8-clamped-array/map.js +2 -0
  4153. package/stable/uint8-clamped-array/of.js +40 -0
  4154. package/stable/uint8-clamped-array/reduce-right.js +2 -0
  4155. package/stable/uint8-clamped-array/reduce.js +2 -0
  4156. package/stable/uint8-clamped-array/reverse.js +2 -0
  4157. package/stable/uint8-clamped-array/set.js +2 -0
  4158. package/stable/uint8-clamped-array/slice.js +2 -0
  4159. package/stable/uint8-clamped-array/some.js +2 -0
  4160. package/stable/uint8-clamped-array/sort.js +2 -0
  4161. package/stable/uint8-clamped-array/subarray.js +2 -0
  4162. package/stable/uint8-clamped-array/to-locale-string.js +2 -0
  4163. package/stable/uint8-clamped-array/to-reversed.js +2 -0
  4164. package/stable/uint8-clamped-array/to-sorted.js +2 -0
  4165. package/stable/uint8-clamped-array/to-string.js +2 -0
  4166. package/stable/uint8-clamped-array/values.js +5 -0
  4167. package/stable/uint8-clamped-array/with.js +2 -0
  4168. package/stable/uri-error/constructor.js +6 -0
  4169. package/stable/uri-error/index.js +7 -0
  4170. package/stable/uri-error/is-error.js +6 -0
  4171. package/stable/url/can-parse.js +12 -3
  4172. package/stable/url/constructor.js +18 -0
  4173. package/stable/url/index.js +18 -2
  4174. package/stable/url/parse.js +12 -3
  4175. package/stable/url/to-json.js +9 -0
  4176. package/stable/url-search-params/constructor.js +14 -0
  4177. package/stable/url-search-params/index.js +11 -2
  4178. package/stable/weak-map/constructor.js +12 -0
  4179. package/stable/weak-map/get-or-insert-computed.js +9 -2
  4180. package/stable/weak-map/get-or-insert.js +9 -2
  4181. package/stable/weak-map/index.js +9 -2
  4182. package/stable/weak-map/prototype/get-or-insert-computed.js +11 -0
  4183. package/stable/weak-map/prototype/get-or-insert.js +11 -0
  4184. package/stable/weak-set/constructor.js +10 -0
  4185. package/stable/weak-set/index.js +7 -2
  4186. package/stage/0.js +353 -10
  4187. package/stage/1.js +352 -26
  4188. package/stage/2.7.js +315 -3
  4189. package/stage/2.js +336 -19
  4190. package/stage/3.js +309 -9
  4191. package/actual/README.md +0 -1
  4192. package/actual/aggregate-error.js +0 -4
  4193. package/actual/array/every.js +0 -4
  4194. package/actual/array/for-each.js +0 -4
  4195. package/actual/array/group-by-to-map.js +0 -7
  4196. package/actual/array/group-by.js +0 -5
  4197. package/actual/array/group-to-map.js +0 -7
  4198. package/actual/array/group.js +0 -5
  4199. package/actual/array/is-array.js +0 -4
  4200. package/actual/array/some.js +0 -4
  4201. package/actual/array/virtual/at.js +0 -4
  4202. package/actual/array/virtual/concat.js +0 -4
  4203. package/actual/array/virtual/copy-within.js +0 -4
  4204. package/actual/array/virtual/entries.js +0 -4
  4205. package/actual/array/virtual/every.js +0 -4
  4206. package/actual/array/virtual/fill.js +0 -4
  4207. package/actual/array/virtual/filter.js +0 -4
  4208. package/actual/array/virtual/find-index.js +0 -4
  4209. package/actual/array/virtual/find-last-index.js +0 -5
  4210. package/actual/array/virtual/find-last.js +0 -5
  4211. package/actual/array/virtual/find.js +0 -4
  4212. package/actual/array/virtual/flat-map.js +0 -4
  4213. package/actual/array/virtual/flat.js +0 -4
  4214. package/actual/array/virtual/for-each.js +0 -4
  4215. package/actual/array/virtual/group-by-to-map.js +0 -7
  4216. package/actual/array/virtual/group-by.js +0 -5
  4217. package/actual/array/virtual/group-to-map.js +0 -7
  4218. package/actual/array/virtual/group.js +0 -5
  4219. package/actual/array/virtual/includes.js +0 -4
  4220. package/actual/array/virtual/index-of.js +0 -4
  4221. package/actual/array/virtual/index.js +0 -17
  4222. package/actual/array/virtual/iterator.js +0 -4
  4223. package/actual/array/virtual/join.js +0 -4
  4224. package/actual/array/virtual/keys.js +0 -4
  4225. package/actual/array/virtual/last-index-of.js +0 -4
  4226. package/actual/array/virtual/map.js +0 -4
  4227. package/actual/array/virtual/push.js +0 -4
  4228. package/actual/array/virtual/reduce-right.js +0 -4
  4229. package/actual/array/virtual/reduce.js +0 -4
  4230. package/actual/array/virtual/reverse.js +0 -4
  4231. package/actual/array/virtual/slice.js +0 -4
  4232. package/actual/array/virtual/some.js +0 -4
  4233. package/actual/array/virtual/sort.js +0 -4
  4234. package/actual/array/virtual/splice.js +0 -4
  4235. package/actual/array/virtual/to-reversed.js +0 -6
  4236. package/actual/array/virtual/to-sorted.js +0 -6
  4237. package/actual/array/virtual/to-spliced.js +0 -6
  4238. package/actual/array/virtual/unshift.js +0 -4
  4239. package/actual/array/virtual/values.js +0 -4
  4240. package/actual/array/virtual/with.js +0 -6
  4241. package/actual/async-iterator/async-dispose.js +0 -3
  4242. package/actual/async-iterator/drop.js +0 -9
  4243. package/actual/async-iterator/every.js +0 -9
  4244. package/actual/async-iterator/filter.js +0 -9
  4245. package/actual/async-iterator/find.js +0 -9
  4246. package/actual/async-iterator/flat-map.js +0 -9
  4247. package/actual/async-iterator/for-each.js +0 -9
  4248. package/actual/async-iterator/from.js +0 -23
  4249. package/actual/async-iterator/map.js +0 -9
  4250. package/actual/async-iterator/reduce.js +0 -9
  4251. package/actual/async-iterator/some.js +0 -9
  4252. package/actual/async-iterator/take.js +0 -9
  4253. package/actual/async-iterator/to-array.js +0 -9
  4254. package/actual/date/get-year.js +0 -4
  4255. package/actual/date/now.js +0 -4
  4256. package/actual/date/set-year.js +0 -4
  4257. package/actual/date/to-gmt-string.js +0 -4
  4258. package/actual/date/to-iso-string.js +0 -4
  4259. package/actual/date/to-primitive.js +0 -4
  4260. package/actual/date/to-string.js +0 -4
  4261. package/actual/dom-exception/to-string-tag.js +0 -4
  4262. package/actual/error/to-string.js +0 -4
  4263. package/actual/escape.js +0 -4
  4264. package/actual/function/bind.js +0 -4
  4265. package/actual/function/has-instance.js +0 -4
  4266. package/actual/function/metadata.js +0 -4
  4267. package/actual/function/virtual/bind.js +0 -4
  4268. package/actual/function/virtual/index.js +0 -4
  4269. package/actual/instance/bind.js +0 -4
  4270. package/actual/instance/every.js +0 -4
  4271. package/actual/instance/group-by-to-map.js +0 -10
  4272. package/actual/instance/group-by.js +0 -10
  4273. package/actual/instance/group-to-map.js +0 -10
  4274. package/actual/instance/group.js +0 -10
  4275. package/actual/instance/some.js +0 -4
  4276. package/actual/iterator/dispose.js +0 -2
  4277. package/actual/iterator/to-async.js +0 -11
  4278. package/actual/json/to-string-tag.js +0 -4
  4279. package/actual/math/to-string-tag.js +0 -4
  4280. package/actual/number/to-precision.js +0 -4
  4281. package/actual/number/virtual/index.js +0 -4
  4282. package/actual/number/virtual/to-exponential.js +0 -4
  4283. package/actual/number/virtual/to-fixed.js +0 -4
  4284. package/actual/number/virtual/to-precision.js +0 -4
  4285. package/actual/reflect/to-string-tag.js +0 -4
  4286. package/actual/set-interval.js +0 -4
  4287. package/actual/set-timeout.js +0 -4
  4288. package/actual/string/substr.js +0 -4
  4289. package/actual/string/virtual/anchor.js +0 -4
  4290. package/actual/string/virtual/at.js +0 -4
  4291. package/actual/string/virtual/big.js +0 -4
  4292. package/actual/string/virtual/blink.js +0 -4
  4293. package/actual/string/virtual/bold.js +0 -4
  4294. package/actual/string/virtual/code-point-at.js +0 -4
  4295. package/actual/string/virtual/ends-with.js +0 -4
  4296. package/actual/string/virtual/fixed.js +0 -4
  4297. package/actual/string/virtual/fontcolor.js +0 -4
  4298. package/actual/string/virtual/fontsize.js +0 -4
  4299. package/actual/string/virtual/includes.js +0 -4
  4300. package/actual/string/virtual/index.js +0 -8
  4301. package/actual/string/virtual/is-well-formed.js +0 -7
  4302. package/actual/string/virtual/italics.js +0 -4
  4303. package/actual/string/virtual/iterator.js +0 -4
  4304. package/actual/string/virtual/link.js +0 -4
  4305. package/actual/string/virtual/match-all.js +0 -4
  4306. package/actual/string/virtual/pad-end.js +0 -4
  4307. package/actual/string/virtual/pad-start.js +0 -4
  4308. package/actual/string/virtual/repeat.js +0 -4
  4309. package/actual/string/virtual/replace-all.js +0 -4
  4310. package/actual/string/virtual/small.js +0 -4
  4311. package/actual/string/virtual/starts-with.js +0 -4
  4312. package/actual/string/virtual/strike.js +0 -4
  4313. package/actual/string/virtual/sub.js +0 -4
  4314. package/actual/string/virtual/substr.js +0 -4
  4315. package/actual/string/virtual/sup.js +0 -4
  4316. package/actual/string/virtual/to-well-formed.js +0 -7
  4317. package/actual/string/virtual/trim-end.js +0 -4
  4318. package/actual/string/virtual/trim-left.js +0 -4
  4319. package/actual/string/virtual/trim-right.js +0 -4
  4320. package/actual/string/virtual/trim-start.js +0 -4
  4321. package/actual/string/virtual/trim.js +0 -4
  4322. package/actual/suppressed-error.js +0 -5
  4323. package/actual/typed-array/float32-array.js +0 -5
  4324. package/actual/typed-array/float64-array.js +0 -5
  4325. package/actual/typed-array/int16-array.js +0 -5
  4326. package/actual/typed-array/int32-array.js +0 -5
  4327. package/actual/typed-array/int8-array.js +0 -5
  4328. package/actual/typed-array/to-spliced.js +0 -3
  4329. package/actual/typed-array/uint16-array.js +0 -5
  4330. package/actual/typed-array/uint32-array.js +0 -5
  4331. package/actual/typed-array/uint8-array.js +0 -5
  4332. package/actual/typed-array/uint8-clamped-array.js +0 -5
  4333. package/actual/unescape.js +0 -4
  4334. package/es/README.md +0 -1
  4335. package/es/aggregate-error.js +0 -9
  4336. package/es/array/every.js +0 -5
  4337. package/es/array/for-each.js +0 -5
  4338. package/es/array/is-array.js +0 -5
  4339. package/es/array/some.js +0 -5
  4340. package/es/array/virtual/at.js +0 -5
  4341. package/es/array/virtual/concat.js +0 -5
  4342. package/es/array/virtual/copy-within.js +0 -5
  4343. package/es/array/virtual/entries.js +0 -6
  4344. package/es/array/virtual/every.js +0 -5
  4345. package/es/array/virtual/fill.js +0 -5
  4346. package/es/array/virtual/filter.js +0 -5
  4347. package/es/array/virtual/find-index.js +0 -5
  4348. package/es/array/virtual/find-last-index.js +0 -5
  4349. package/es/array/virtual/find-last.js +0 -5
  4350. package/es/array/virtual/find.js +0 -5
  4351. package/es/array/virtual/flat-map.js +0 -6
  4352. package/es/array/virtual/flat.js +0 -6
  4353. package/es/array/virtual/for-each.js +0 -5
  4354. package/es/array/virtual/includes.js +0 -5
  4355. package/es/array/virtual/index-of.js +0 -5
  4356. package/es/array/virtual/index.js +0 -40
  4357. package/es/array/virtual/iterator.js +0 -6
  4358. package/es/array/virtual/join.js +0 -5
  4359. package/es/array/virtual/keys.js +0 -6
  4360. package/es/array/virtual/last-index-of.js +0 -5
  4361. package/es/array/virtual/map.js +0 -5
  4362. package/es/array/virtual/push.js +0 -5
  4363. package/es/array/virtual/reduce-right.js +0 -5
  4364. package/es/array/virtual/reduce.js +0 -5
  4365. package/es/array/virtual/reverse.js +0 -5
  4366. package/es/array/virtual/slice.js +0 -5
  4367. package/es/array/virtual/some.js +0 -5
  4368. package/es/array/virtual/sort.js +0 -5
  4369. package/es/array/virtual/splice.js +0 -5
  4370. package/es/array/virtual/to-reversed.js +0 -5
  4371. package/es/array/virtual/to-sorted.js +0 -6
  4372. package/es/array/virtual/to-spliced.js +0 -5
  4373. package/es/array/virtual/unshift.js +0 -5
  4374. package/es/array/virtual/values.js +0 -6
  4375. package/es/array/virtual/with.js +0 -5
  4376. package/es/async-iterator/async-dispose.js +0 -4
  4377. package/es/date/get-year.js +0 -5
  4378. package/es/date/now.js +0 -5
  4379. package/es/date/set-year.js +0 -5
  4380. package/es/date/to-gmt-string.js +0 -5
  4381. package/es/date/to-iso-string.js +0 -6
  4382. package/es/date/to-primitive.js +0 -6
  4383. package/es/date/to-string.js +0 -5
  4384. package/es/error/to-string.js +0 -5
  4385. package/es/escape.js +0 -5
  4386. package/es/function/bind.js +0 -5
  4387. package/es/function/has-instance.js +0 -5
  4388. package/es/function/virtual/bind.js +0 -5
  4389. package/es/function/virtual/index.js +0 -5
  4390. package/es/instance/bind.js +0 -10
  4391. package/es/instance/every.js +0 -10
  4392. package/es/instance/for-each.js +0 -10
  4393. package/es/instance/some.js +0 -10
  4394. package/es/iterator/dispose.js +0 -2
  4395. package/es/json/to-string-tag.js +0 -4
  4396. package/es/math/to-string-tag.js +0 -4
  4397. package/es/number/to-precision.js +0 -5
  4398. package/es/number/virtual/index.js +0 -7
  4399. package/es/number/virtual/to-exponential.js +0 -5
  4400. package/es/number/virtual/to-fixed.js +0 -5
  4401. package/es/number/virtual/to-precision.js +0 -5
  4402. package/es/reflect/to-string-tag.js +0 -5
  4403. package/es/string/substr.js +0 -5
  4404. package/es/string/virtual/anchor.js +0 -5
  4405. package/es/string/virtual/at.js +0 -5
  4406. package/es/string/virtual/big.js +0 -5
  4407. package/es/string/virtual/blink.js +0 -5
  4408. package/es/string/virtual/bold.js +0 -5
  4409. package/es/string/virtual/code-point-at.js +0 -5
  4410. package/es/string/virtual/ends-with.js +0 -5
  4411. package/es/string/virtual/fixed.js +0 -5
  4412. package/es/string/virtual/fontcolor.js +0 -5
  4413. package/es/string/virtual/fontsize.js +0 -5
  4414. package/es/string/virtual/includes.js +0 -5
  4415. package/es/string/virtual/index.js +0 -38
  4416. package/es/string/virtual/is-well-formed.js +0 -5
  4417. package/es/string/virtual/italics.js +0 -5
  4418. package/es/string/virtual/iterator.js +0 -6
  4419. package/es/string/virtual/link.js +0 -5
  4420. package/es/string/virtual/match-all.js +0 -7
  4421. package/es/string/virtual/pad-end.js +0 -5
  4422. package/es/string/virtual/pad-start.js +0 -5
  4423. package/es/string/virtual/repeat.js +0 -5
  4424. package/es/string/virtual/replace-all.js +0 -7
  4425. package/es/string/virtual/small.js +0 -5
  4426. package/es/string/virtual/starts-with.js +0 -5
  4427. package/es/string/virtual/strike.js +0 -5
  4428. package/es/string/virtual/sub.js +0 -5
  4429. package/es/string/virtual/substr.js +0 -5
  4430. package/es/string/virtual/sup.js +0 -5
  4431. package/es/string/virtual/to-well-formed.js +0 -5
  4432. package/es/string/virtual/trim-end.js +0 -5
  4433. package/es/string/virtual/trim-left.js +0 -5
  4434. package/es/string/virtual/trim-right.js +0 -5
  4435. package/es/string/virtual/trim-start.js +0 -5
  4436. package/es/string/virtual/trim.js +0 -5
  4437. package/es/suppressed-error.js +0 -7
  4438. package/es/typed-array/float32-array.js +0 -8
  4439. package/es/typed-array/float64-array.js +0 -8
  4440. package/es/typed-array/int16-array.js +0 -8
  4441. package/es/typed-array/int32-array.js +0 -8
  4442. package/es/typed-array/int8-array.js +0 -8
  4443. package/es/typed-array/uint16-array.js +0 -8
  4444. package/es/typed-array/uint32-array.js +0 -8
  4445. package/es/typed-array/uint8-array.js +0 -8
  4446. package/es/typed-array/uint8-clamped-array.js +0 -8
  4447. package/es/unescape.js +0 -5
  4448. package/features/aggregate-error.js +0 -2
  4449. package/features/array/at.js +0 -2
  4450. package/features/array/concat.js +0 -2
  4451. package/features/array/copy-within.js +0 -2
  4452. package/features/array/entries.js +0 -2
  4453. package/features/array/every.js +0 -2
  4454. package/features/array/fill.js +0 -2
  4455. package/features/array/filter-out.js +0 -2
  4456. package/features/array/filter-reject.js +0 -2
  4457. package/features/array/filter.js +0 -2
  4458. package/features/array/find-index.js +0 -2
  4459. package/features/array/find-last-index.js +0 -2
  4460. package/features/array/find-last.js +0 -2
  4461. package/features/array/find.js +0 -2
  4462. package/features/array/flat-map.js +0 -2
  4463. package/features/array/flat.js +0 -2
  4464. package/features/array/for-each.js +0 -2
  4465. package/features/array/from-async.js +0 -2
  4466. package/features/array/from.js +0 -2
  4467. package/features/array/group-by-to-map.js +0 -2
  4468. package/features/array/group-by.js +0 -2
  4469. package/features/array/group-to-map.js +0 -2
  4470. package/features/array/group.js +0 -2
  4471. package/features/array/includes.js +0 -2
  4472. package/features/array/index-of.js +0 -2
  4473. package/features/array/index.js +0 -2
  4474. package/features/array/is-array.js +0 -2
  4475. package/features/array/is-template-object.js +0 -2
  4476. package/features/array/iterator.js +0 -2
  4477. package/features/array/join.js +0 -2
  4478. package/features/array/keys.js +0 -2
  4479. package/features/array/last-index-of.js +0 -2
  4480. package/features/array/last-index.js +0 -2
  4481. package/features/array/last-item.js +0 -2
  4482. package/features/array/map.js +0 -2
  4483. package/features/array/of.js +0 -2
  4484. package/features/array/push.js +0 -2
  4485. package/features/array/reduce-right.js +0 -2
  4486. package/features/array/reduce.js +0 -2
  4487. package/features/array/reverse.js +0 -2
  4488. package/features/array/slice.js +0 -2
  4489. package/features/array/some.js +0 -2
  4490. package/features/array/sort.js +0 -2
  4491. package/features/array/splice.js +0 -2
  4492. package/features/array/to-reversed.js +0 -2
  4493. package/features/array/to-sorted.js +0 -2
  4494. package/features/array/to-spliced.js +0 -2
  4495. package/features/array/unique-by.js +0 -2
  4496. package/features/array/unshift.js +0 -2
  4497. package/features/array/values.js +0 -2
  4498. package/features/array/virtual/at.js +0 -2
  4499. package/features/array/virtual/concat.js +0 -2
  4500. package/features/array/virtual/copy-within.js +0 -2
  4501. package/features/array/virtual/entries.js +0 -2
  4502. package/features/array/virtual/every.js +0 -2
  4503. package/features/array/virtual/fill.js +0 -2
  4504. package/features/array/virtual/filter-out.js +0 -2
  4505. package/features/array/virtual/filter-reject.js +0 -2
  4506. package/features/array/virtual/filter.js +0 -2
  4507. package/features/array/virtual/find-index.js +0 -2
  4508. package/features/array/virtual/find-last-index.js +0 -2
  4509. package/features/array/virtual/find-last.js +0 -2
  4510. package/features/array/virtual/find.js +0 -2
  4511. package/features/array/virtual/flat-map.js +0 -2
  4512. package/features/array/virtual/flat.js +0 -2
  4513. package/features/array/virtual/for-each.js +0 -2
  4514. package/features/array/virtual/group-by-to-map.js +0 -2
  4515. package/features/array/virtual/group-by.js +0 -2
  4516. package/features/array/virtual/group-to-map.js +0 -2
  4517. package/features/array/virtual/group.js +0 -2
  4518. package/features/array/virtual/includes.js +0 -2
  4519. package/features/array/virtual/index-of.js +0 -2
  4520. package/features/array/virtual/index.js +0 -2
  4521. package/features/array/virtual/iterator.js +0 -2
  4522. package/features/array/virtual/join.js +0 -2
  4523. package/features/array/virtual/keys.js +0 -2
  4524. package/features/array/virtual/last-index-of.js +0 -2
  4525. package/features/array/virtual/map.js +0 -2
  4526. package/features/array/virtual/push.js +0 -2
  4527. package/features/array/virtual/reduce-right.js +0 -2
  4528. package/features/array/virtual/reduce.js +0 -2
  4529. package/features/array/virtual/reverse.js +0 -2
  4530. package/features/array/virtual/slice.js +0 -2
  4531. package/features/array/virtual/some.js +0 -2
  4532. package/features/array/virtual/sort.js +0 -2
  4533. package/features/array/virtual/splice.js +0 -2
  4534. package/features/array/virtual/to-reversed.js +0 -2
  4535. package/features/array/virtual/to-sorted.js +0 -2
  4536. package/features/array/virtual/to-spliced.js +0 -2
  4537. package/features/array/virtual/unique-by.js +0 -2
  4538. package/features/array/virtual/unshift.js +0 -2
  4539. package/features/array/virtual/values.js +0 -2
  4540. package/features/array/virtual/with.js +0 -2
  4541. package/features/array/with.js +0 -2
  4542. package/features/array-buffer/constructor.js +0 -2
  4543. package/features/array-buffer/detached.js +0 -2
  4544. package/features/array-buffer/index.js +0 -2
  4545. package/features/array-buffer/is-view.js +0 -2
  4546. package/features/array-buffer/slice.js +0 -2
  4547. package/features/array-buffer/transfer-to-fixed-length.js +0 -2
  4548. package/features/array-buffer/transfer.js +0 -2
  4549. package/features/async-disposable-stack/constructor.js +0 -2
  4550. package/features/async-disposable-stack/index.js +0 -2
  4551. package/features/async-iterator/as-indexed-pairs.js +0 -2
  4552. package/features/async-iterator/async-dispose.js +0 -2
  4553. package/features/async-iterator/drop.js +0 -2
  4554. package/features/async-iterator/every.js +0 -2
  4555. package/features/async-iterator/filter.js +0 -2
  4556. package/features/async-iterator/find.js +0 -2
  4557. package/features/async-iterator/flat-map.js +0 -2
  4558. package/features/async-iterator/for-each.js +0 -2
  4559. package/features/async-iterator/from.js +0 -2
  4560. package/features/async-iterator/index.js +0 -2
  4561. package/features/async-iterator/indexed.js +0 -2
  4562. package/features/async-iterator/map.js +0 -2
  4563. package/features/async-iterator/reduce.js +0 -2
  4564. package/features/async-iterator/some.js +0 -2
  4565. package/features/async-iterator/take.js +0 -2
  4566. package/features/async-iterator/to-array.js +0 -2
  4567. package/features/atob.js +0 -2
  4568. package/features/bigint/index.js +0 -2
  4569. package/features/bigint/range.js +0 -2
  4570. package/features/btoa.js +0 -2
  4571. package/features/clear-immediate.js +0 -2
  4572. package/features/composite-key.js +0 -2
  4573. package/features/composite-symbol.js +0 -2
  4574. package/features/data-view/get-float16.js +0 -2
  4575. package/features/data-view/get-uint8-clamped.js +0 -2
  4576. package/features/data-view/index.js +0 -2
  4577. package/features/data-view/set-float16.js +0 -2
  4578. package/features/data-view/set-uint8-clamped.js +0 -2
  4579. package/features/date/get-year.js +0 -2
  4580. package/features/date/index.js +0 -2
  4581. package/features/date/now.js +0 -2
  4582. package/features/date/set-year.js +0 -2
  4583. package/features/date/to-gmt-string.js +0 -2
  4584. package/features/date/to-iso-string.js +0 -2
  4585. package/features/date/to-json.js +0 -2
  4586. package/features/date/to-primitive.js +0 -2
  4587. package/features/date/to-string.js +0 -2
  4588. package/features/disposable-stack/constructor.js +0 -2
  4589. package/features/disposable-stack/index.js +0 -2
  4590. package/features/dom-collections/for-each.js +0 -2
  4591. package/features/dom-collections/index.js +0 -2
  4592. package/features/dom-collections/iterator.js +0 -2
  4593. package/features/dom-exception/constructor.js +0 -2
  4594. package/features/dom-exception/index.js +0 -2
  4595. package/features/dom-exception/to-string-tag.js +0 -2
  4596. package/features/error/constructor.js +0 -2
  4597. package/features/error/index.js +0 -2
  4598. package/features/error/is-error.js +0 -2
  4599. package/features/error/to-string.js +0 -2
  4600. package/features/escape.js +0 -2
  4601. package/features/function/bind.js +0 -2
  4602. package/features/function/demethodize.js +0 -2
  4603. package/features/function/has-instance.js +0 -2
  4604. package/features/function/index.js +0 -2
  4605. package/features/function/is-callable.js +0 -2
  4606. package/features/function/is-constructor.js +0 -2
  4607. package/features/function/metadata.js +0 -2
  4608. package/features/function/name.js +0 -2
  4609. package/features/function/un-this.js +0 -2
  4610. package/features/function/virtual/bind.js +0 -2
  4611. package/features/function/virtual/demethodize.js +0 -2
  4612. package/features/function/virtual/index.js +0 -2
  4613. package/features/function/virtual/un-this.js +0 -2
  4614. package/features/get-iterator-method.js +0 -2
  4615. package/features/get-iterator.js +0 -2
  4616. package/features/global-this.js +0 -2
  4617. package/features/index.js +0 -2
  4618. package/features/instance/at.js +0 -2
  4619. package/features/instance/bind.js +0 -2
  4620. package/features/instance/clamp.js +0 -2
  4621. package/features/instance/code-point-at.js +0 -2
  4622. package/features/instance/code-points.js +0 -2
  4623. package/features/instance/concat.js +0 -2
  4624. package/features/instance/copy-within.js +0 -2
  4625. package/features/instance/demethodize.js +0 -2
  4626. package/features/instance/ends-with.js +0 -2
  4627. package/features/instance/entries.js +0 -2
  4628. package/features/instance/every.js +0 -2
  4629. package/features/instance/fill.js +0 -2
  4630. package/features/instance/filter-out.js +0 -2
  4631. package/features/instance/filter-reject.js +0 -2
  4632. package/features/instance/filter.js +0 -2
  4633. package/features/instance/find-index.js +0 -2
  4634. package/features/instance/find-last-index.js +0 -2
  4635. package/features/instance/find-last.js +0 -2
  4636. package/features/instance/find.js +0 -2
  4637. package/features/instance/flags.js +0 -2
  4638. package/features/instance/flat-map.js +0 -2
  4639. package/features/instance/flat.js +0 -2
  4640. package/features/instance/for-each.js +0 -2
  4641. package/features/instance/group-by-to-map.js +0 -2
  4642. package/features/instance/group-by.js +0 -2
  4643. package/features/instance/group-to-map.js +0 -2
  4644. package/features/instance/group.js +0 -2
  4645. package/features/instance/includes.js +0 -2
  4646. package/features/instance/index-of.js +0 -2
  4647. package/features/instance/is-well-formed.js +0 -2
  4648. package/features/instance/keys.js +0 -2
  4649. package/features/instance/last-index-of.js +0 -2
  4650. package/features/instance/map.js +0 -2
  4651. package/features/instance/match-all.js +0 -2
  4652. package/features/instance/pad-end.js +0 -2
  4653. package/features/instance/pad-start.js +0 -2
  4654. package/features/instance/push.js +0 -2
  4655. package/features/instance/reduce-right.js +0 -2
  4656. package/features/instance/reduce.js +0 -2
  4657. package/features/instance/repeat.js +0 -2
  4658. package/features/instance/replace-all.js +0 -2
  4659. package/features/instance/reverse.js +0 -2
  4660. package/features/instance/slice.js +0 -2
  4661. package/features/instance/some.js +0 -2
  4662. package/features/instance/sort.js +0 -2
  4663. package/features/instance/splice.js +0 -2
  4664. package/features/instance/starts-with.js +0 -2
  4665. package/features/instance/to-reversed.js +0 -2
  4666. package/features/instance/to-sorted.js +0 -2
  4667. package/features/instance/to-spliced.js +0 -2
  4668. package/features/instance/to-well-formed.js +0 -2
  4669. package/features/instance/trim-end.js +0 -2
  4670. package/features/instance/trim-left.js +0 -2
  4671. package/features/instance/trim-right.js +0 -2
  4672. package/features/instance/trim-start.js +0 -2
  4673. package/features/instance/trim.js +0 -2
  4674. package/features/instance/un-this.js +0 -2
  4675. package/features/instance/unique-by.js +0 -2
  4676. package/features/instance/unshift.js +0 -2
  4677. package/features/instance/values.js +0 -2
  4678. package/features/instance/with.js +0 -2
  4679. package/features/is-iterable.js +0 -2
  4680. package/features/iterator/as-indexed-pairs.js +0 -2
  4681. package/features/iterator/chunks.js +0 -2
  4682. package/features/iterator/concat.js +0 -2
  4683. package/features/iterator/dispose.js +0 -2
  4684. package/features/iterator/drop.js +0 -2
  4685. package/features/iterator/every.js +0 -2
  4686. package/features/iterator/filter.js +0 -2
  4687. package/features/iterator/find.js +0 -2
  4688. package/features/iterator/flat-map.js +0 -2
  4689. package/features/iterator/for-each.js +0 -2
  4690. package/features/iterator/from.js +0 -2
  4691. package/features/iterator/index.js +0 -2
  4692. package/features/iterator/indexed.js +0 -2
  4693. package/features/iterator/map.js +0 -2
  4694. package/features/iterator/range.js +0 -2
  4695. package/features/iterator/reduce.js +0 -2
  4696. package/features/iterator/sliding.js +0 -2
  4697. package/features/iterator/some.js +0 -2
  4698. package/features/iterator/take.js +0 -2
  4699. package/features/iterator/to-array.js +0 -2
  4700. package/features/iterator/to-async.js +0 -2
  4701. package/features/iterator/windows.js +0 -2
  4702. package/features/iterator/zip-keyed.js +0 -2
  4703. package/features/iterator/zip.js +0 -2
  4704. package/features/json/index.js +0 -2
  4705. package/features/json/is-raw-json.js +0 -2
  4706. package/features/json/parse.js +0 -2
  4707. package/features/json/raw-json.js +0 -2
  4708. package/features/json/stringify.js +0 -2
  4709. package/features/json/to-string-tag.js +0 -2
  4710. package/features/map/delete-all.js +0 -2
  4711. package/features/map/emplace.js +0 -2
  4712. package/features/map/every.js +0 -2
  4713. package/features/map/filter.js +0 -2
  4714. package/features/map/find-key.js +0 -2
  4715. package/features/map/find.js +0 -2
  4716. package/features/map/from.js +0 -2
  4717. package/features/map/get-or-insert-computed.js +0 -2
  4718. package/features/map/get-or-insert.js +0 -2
  4719. package/features/map/group-by.js +0 -2
  4720. package/features/map/includes.js +0 -2
  4721. package/features/map/index.js +0 -2
  4722. package/features/map/key-by.js +0 -2
  4723. package/features/map/key-of.js +0 -2
  4724. package/features/map/map-keys.js +0 -2
  4725. package/features/map/map-values.js +0 -2
  4726. package/features/map/merge.js +0 -2
  4727. package/features/map/of.js +0 -2
  4728. package/features/map/reduce.js +0 -2
  4729. package/features/map/some.js +0 -2
  4730. package/features/map/update-or-insert.js +0 -2
  4731. package/features/map/update.js +0 -2
  4732. package/features/map/upsert.js +0 -2
  4733. package/features/math/acosh.js +0 -2
  4734. package/features/math/asinh.js +0 -2
  4735. package/features/math/atanh.js +0 -2
  4736. package/features/math/cbrt.js +0 -2
  4737. package/features/math/clamp.js +0 -2
  4738. package/features/math/clz32.js +0 -2
  4739. package/features/math/cosh.js +0 -2
  4740. package/features/math/deg-per-rad.js +0 -2
  4741. package/features/math/degrees.js +0 -2
  4742. package/features/math/expm1.js +0 -2
  4743. package/features/math/f16round.js +0 -2
  4744. package/features/math/fround.js +0 -2
  4745. package/features/math/fscale.js +0 -2
  4746. package/features/math/hypot.js +0 -2
  4747. package/features/math/iaddh.js +0 -2
  4748. package/features/math/imul.js +0 -2
  4749. package/features/math/imulh.js +0 -2
  4750. package/features/math/index.js +0 -2
  4751. package/features/math/isubh.js +0 -2
  4752. package/features/math/log10.js +0 -2
  4753. package/features/math/log1p.js +0 -2
  4754. package/features/math/log2.js +0 -2
  4755. package/features/math/rad-per-deg.js +0 -2
  4756. package/features/math/radians.js +0 -2
  4757. package/features/math/scale.js +0 -2
  4758. package/features/math/seeded-prng.js +0 -2
  4759. package/features/math/sign.js +0 -2
  4760. package/features/math/signbit.js +0 -2
  4761. package/features/math/sinh.js +0 -2
  4762. package/features/math/sum-precise.js +0 -2
  4763. package/features/math/tanh.js +0 -2
  4764. package/features/math/to-string-tag.js +0 -2
  4765. package/features/math/trunc.js +0 -2
  4766. package/features/math/umulh.js +0 -2
  4767. package/features/number/clamp.js +0 -2
  4768. package/features/number/constructor.js +0 -2
  4769. package/features/number/epsilon.js +0 -2
  4770. package/features/number/from-string.js +0 -2
  4771. package/features/number/index.js +0 -2
  4772. package/features/number/is-finite.js +0 -2
  4773. package/features/number/is-integer.js +0 -2
  4774. package/features/number/is-nan.js +0 -2
  4775. package/features/number/is-safe-integer.js +0 -2
  4776. package/features/number/max-safe-integer.js +0 -2
  4777. package/features/number/min-safe-integer.js +0 -2
  4778. package/features/number/parse-float.js +0 -2
  4779. package/features/number/parse-int.js +0 -2
  4780. package/features/number/range.js +0 -2
  4781. package/features/number/to-exponential.js +0 -2
  4782. package/features/number/to-fixed.js +0 -2
  4783. package/features/number/to-precision.js +0 -2
  4784. package/features/number/virtual/clamp.js +0 -2
  4785. package/features/number/virtual/index.js +0 -2
  4786. package/features/number/virtual/to-exponential.js +0 -2
  4787. package/features/number/virtual/to-fixed.js +0 -2
  4788. package/features/number/virtual/to-precision.js +0 -2
  4789. package/features/object/assign.js +0 -2
  4790. package/features/object/create.js +0 -2
  4791. package/features/object/define-getter.js +0 -2
  4792. package/features/object/define-properties.js +0 -2
  4793. package/features/object/define-property.js +0 -2
  4794. package/features/object/define-setter.js +0 -2
  4795. package/features/object/entries.js +0 -2
  4796. package/features/object/freeze.js +0 -2
  4797. package/features/object/from-entries.js +0 -2
  4798. package/features/object/get-own-property-descriptor.js +0 -2
  4799. package/features/object/get-own-property-descriptors.js +0 -2
  4800. package/features/object/get-own-property-names.js +0 -2
  4801. package/features/object/get-own-property-symbols.js +0 -2
  4802. package/features/object/get-prototype-of.js +0 -2
  4803. package/features/object/group-by.js +0 -2
  4804. package/features/object/has-own.js +0 -2
  4805. package/features/object/index.js +0 -2
  4806. package/features/object/is-extensible.js +0 -2
  4807. package/features/object/is-frozen.js +0 -2
  4808. package/features/object/is-sealed.js +0 -2
  4809. package/features/object/is.js +0 -2
  4810. package/features/object/iterate-entries.js +0 -2
  4811. package/features/object/iterate-keys.js +0 -2
  4812. package/features/object/iterate-values.js +0 -2
  4813. package/features/object/keys.js +0 -2
  4814. package/features/object/lookup-getter.js +0 -2
  4815. package/features/object/lookup-setter.js +0 -2
  4816. package/features/object/prevent-extensions.js +0 -2
  4817. package/features/object/proto.js +0 -2
  4818. package/features/object/seal.js +0 -2
  4819. package/features/object/set-prototype-of.js +0 -2
  4820. package/features/object/to-string.js +0 -2
  4821. package/features/object/values.js +0 -2
  4822. package/features/observable/index.js +0 -2
  4823. package/features/parse-float.js +0 -2
  4824. package/features/parse-int.js +0 -2
  4825. package/features/promise/all-settled.js +0 -2
  4826. package/features/promise/any.js +0 -2
  4827. package/features/promise/finally.js +0 -2
  4828. package/features/promise/index.js +0 -2
  4829. package/features/promise/try.js +0 -2
  4830. package/features/promise/with-resolvers.js +0 -2
  4831. package/features/queue-microtask.js +0 -2
  4832. package/features/reflect/apply.js +0 -2
  4833. package/features/reflect/construct.js +0 -2
  4834. package/features/reflect/define-metadata.js +0 -2
  4835. package/features/reflect/define-property.js +0 -2
  4836. package/features/reflect/delete-metadata.js +0 -2
  4837. package/features/reflect/delete-property.js +0 -2
  4838. package/features/reflect/get-metadata-keys.js +0 -2
  4839. package/features/reflect/get-metadata.js +0 -2
  4840. package/features/reflect/get-own-metadata-keys.js +0 -2
  4841. package/features/reflect/get-own-metadata.js +0 -2
  4842. package/features/reflect/get-own-property-descriptor.js +0 -2
  4843. package/features/reflect/get-prototype-of.js +0 -2
  4844. package/features/reflect/get.js +0 -2
  4845. package/features/reflect/has-metadata.js +0 -2
  4846. package/features/reflect/has-own-metadata.js +0 -2
  4847. package/features/reflect/has.js +0 -2
  4848. package/features/reflect/index.js +0 -2
  4849. package/features/reflect/is-extensible.js +0 -2
  4850. package/features/reflect/metadata.js +0 -2
  4851. package/features/reflect/own-keys.js +0 -2
  4852. package/features/reflect/prevent-extensions.js +0 -2
  4853. package/features/reflect/set-prototype-of.js +0 -2
  4854. package/features/reflect/set.js +0 -2
  4855. package/features/reflect/to-string-tag.js +0 -2
  4856. package/features/regexp/constructor.js +0 -2
  4857. package/features/regexp/dot-all.js +0 -2
  4858. package/features/regexp/escape.js +0 -2
  4859. package/features/regexp/flags.js +0 -2
  4860. package/features/regexp/index.js +0 -2
  4861. package/features/regexp/match.js +0 -2
  4862. package/features/regexp/replace.js +0 -2
  4863. package/features/regexp/search.js +0 -2
  4864. package/features/regexp/split.js +0 -2
  4865. package/features/regexp/sticky.js +0 -2
  4866. package/features/regexp/test.js +0 -2
  4867. package/features/regexp/to-string.js +0 -2
  4868. package/features/self.js +0 -2
  4869. package/features/set/add-all.js +0 -2
  4870. package/features/set/delete-all.js +0 -2
  4871. package/features/set/difference.js +0 -2
  4872. package/features/set/every.js +0 -2
  4873. package/features/set/filter.js +0 -2
  4874. package/features/set/find.js +0 -2
  4875. package/features/set/from.js +0 -2
  4876. package/features/set/index.js +0 -2
  4877. package/features/set/intersection.js +0 -2
  4878. package/features/set/is-disjoint-from.js +0 -2
  4879. package/features/set/is-subset-of.js +0 -2
  4880. package/features/set/is-superset-of.js +0 -2
  4881. package/features/set/join.js +0 -2
  4882. package/features/set/map.js +0 -2
  4883. package/features/set/of.js +0 -2
  4884. package/features/set/reduce.js +0 -2
  4885. package/features/set/some.js +0 -2
  4886. package/features/set/symmetric-difference.js +0 -2
  4887. package/features/set/union.js +0 -2
  4888. package/features/set-immediate.js +0 -2
  4889. package/features/set-interval.js +0 -2
  4890. package/features/set-timeout.js +0 -2
  4891. package/features/string/anchor.js +0 -2
  4892. package/features/string/at.js +0 -2
  4893. package/features/string/big.js +0 -2
  4894. package/features/string/blink.js +0 -2
  4895. package/features/string/bold.js +0 -2
  4896. package/features/string/code-point-at.js +0 -2
  4897. package/features/string/code-points.js +0 -2
  4898. package/features/string/cooked.js +0 -2
  4899. package/features/string/dedent.js +0 -2
  4900. package/features/string/ends-with.js +0 -2
  4901. package/features/string/fixed.js +0 -2
  4902. package/features/string/fontcolor.js +0 -2
  4903. package/features/string/fontsize.js +0 -2
  4904. package/features/string/from-code-point.js +0 -2
  4905. package/features/string/includes.js +0 -2
  4906. package/features/string/index.js +0 -2
  4907. package/features/string/is-well-formed.js +0 -2
  4908. package/features/string/italics.js +0 -2
  4909. package/features/string/iterator.js +0 -2
  4910. package/features/string/link.js +0 -2
  4911. package/features/string/match-all.js +0 -2
  4912. package/features/string/match.js +0 -2
  4913. package/features/string/pad-end.js +0 -2
  4914. package/features/string/pad-start.js +0 -2
  4915. package/features/string/raw.js +0 -2
  4916. package/features/string/repeat.js +0 -2
  4917. package/features/string/replace-all.js +0 -2
  4918. package/features/string/replace.js +0 -2
  4919. package/features/string/search.js +0 -2
  4920. package/features/string/small.js +0 -2
  4921. package/features/string/split.js +0 -2
  4922. package/features/string/starts-with.js +0 -2
  4923. package/features/string/strike.js +0 -2
  4924. package/features/string/sub.js +0 -2
  4925. package/features/string/substr.js +0 -2
  4926. package/features/string/sup.js +0 -2
  4927. package/features/string/to-well-formed.js +0 -2
  4928. package/features/string/trim-end.js +0 -2
  4929. package/features/string/trim-left.js +0 -2
  4930. package/features/string/trim-right.js +0 -2
  4931. package/features/string/trim-start.js +0 -2
  4932. package/features/string/trim.js +0 -2
  4933. package/features/string/virtual/anchor.js +0 -2
  4934. package/features/string/virtual/at.js +0 -2
  4935. package/features/string/virtual/big.js +0 -2
  4936. package/features/string/virtual/blink.js +0 -2
  4937. package/features/string/virtual/bold.js +0 -2
  4938. package/features/string/virtual/code-point-at.js +0 -2
  4939. package/features/string/virtual/code-points.js +0 -2
  4940. package/features/string/virtual/ends-with.js +0 -2
  4941. package/features/string/virtual/fixed.js +0 -2
  4942. package/features/string/virtual/fontcolor.js +0 -2
  4943. package/features/string/virtual/fontsize.js +0 -2
  4944. package/features/string/virtual/includes.js +0 -2
  4945. package/features/string/virtual/index.js +0 -2
  4946. package/features/string/virtual/is-well-formed.js +0 -2
  4947. package/features/string/virtual/italics.js +0 -2
  4948. package/features/string/virtual/iterator.js +0 -2
  4949. package/features/string/virtual/link.js +0 -2
  4950. package/features/string/virtual/match-all.js +0 -2
  4951. package/features/string/virtual/pad-end.js +0 -2
  4952. package/features/string/virtual/pad-start.js +0 -2
  4953. package/features/string/virtual/repeat.js +0 -2
  4954. package/features/string/virtual/replace-all.js +0 -2
  4955. package/features/string/virtual/small.js +0 -2
  4956. package/features/string/virtual/starts-with.js +0 -2
  4957. package/features/string/virtual/strike.js +0 -2
  4958. package/features/string/virtual/sub.js +0 -2
  4959. package/features/string/virtual/substr.js +0 -2
  4960. package/features/string/virtual/sup.js +0 -2
  4961. package/features/string/virtual/to-well-formed.js +0 -2
  4962. package/features/string/virtual/trim-end.js +0 -2
  4963. package/features/string/virtual/trim-left.js +0 -2
  4964. package/features/string/virtual/trim-right.js +0 -2
  4965. package/features/string/virtual/trim-start.js +0 -2
  4966. package/features/string/virtual/trim.js +0 -2
  4967. package/features/structured-clone.js +0 -2
  4968. package/features/suppressed-error.js +0 -2
  4969. package/features/symbol/async-dispose.js +0 -2
  4970. package/features/symbol/async-iterator.js +0 -2
  4971. package/features/symbol/custom-matcher.js +0 -2
  4972. package/features/symbol/description.js +0 -2
  4973. package/features/symbol/dispose.js +0 -2
  4974. package/features/symbol/for.js +0 -2
  4975. package/features/symbol/has-instance.js +0 -2
  4976. package/features/symbol/index.js +0 -2
  4977. package/features/symbol/is-concat-spreadable.js +0 -2
  4978. package/features/symbol/is-registered-symbol.js +0 -2
  4979. package/features/symbol/is-registered.js +0 -2
  4980. package/features/symbol/is-well-known-symbol.js +0 -2
  4981. package/features/symbol/is-well-known.js +0 -2
  4982. package/features/symbol/iterator.js +0 -2
  4983. package/features/symbol/key-for.js +0 -2
  4984. package/features/symbol/match-all.js +0 -2
  4985. package/features/symbol/match.js +0 -2
  4986. package/features/symbol/matcher.js +0 -2
  4987. package/features/symbol/metadata-key.js +0 -2
  4988. package/features/symbol/metadata.js +0 -2
  4989. package/features/symbol/observable.js +0 -2
  4990. package/features/symbol/pattern-match.js +0 -2
  4991. package/features/symbol/replace-all.js +0 -2
  4992. package/features/symbol/replace.js +0 -2
  4993. package/features/symbol/search.js +0 -2
  4994. package/features/symbol/species.js +0 -2
  4995. package/features/symbol/split.js +0 -2
  4996. package/features/symbol/to-primitive.js +0 -2
  4997. package/features/symbol/to-string-tag.js +0 -2
  4998. package/features/symbol/unscopables.js +0 -2
  4999. package/features/typed-array/at.js +0 -2
  5000. package/features/typed-array/copy-within.js +0 -2
  5001. package/features/typed-array/entries.js +0 -2
  5002. package/features/typed-array/every.js +0 -2
  5003. package/features/typed-array/fill.js +0 -2
  5004. package/features/typed-array/filter-out.js +0 -2
  5005. package/features/typed-array/filter-reject.js +0 -2
  5006. package/features/typed-array/filter.js +0 -2
  5007. package/features/typed-array/find-index.js +0 -2
  5008. package/features/typed-array/find-last-index.js +0 -2
  5009. package/features/typed-array/find-last.js +0 -2
  5010. package/features/typed-array/find.js +0 -2
  5011. package/features/typed-array/float32-array.js +0 -2
  5012. package/features/typed-array/float64-array.js +0 -2
  5013. package/features/typed-array/for-each.js +0 -2
  5014. package/features/typed-array/from-async.js +0 -2
  5015. package/features/typed-array/from-base64.js +0 -2
  5016. package/features/typed-array/from-hex.js +0 -2
  5017. package/features/typed-array/from.js +0 -2
  5018. package/features/typed-array/group-by.js +0 -2
  5019. package/features/typed-array/includes.js +0 -2
  5020. package/features/typed-array/index-of.js +0 -2
  5021. package/features/typed-array/index.js +0 -2
  5022. package/features/typed-array/int16-array.js +0 -2
  5023. package/features/typed-array/int32-array.js +0 -2
  5024. package/features/typed-array/int8-array.js +0 -2
  5025. package/features/typed-array/iterator.js +0 -2
  5026. package/features/typed-array/join.js +0 -2
  5027. package/features/typed-array/keys.js +0 -2
  5028. package/features/typed-array/last-index-of.js +0 -2
  5029. package/features/typed-array/map.js +0 -2
  5030. package/features/typed-array/methods.js +0 -2
  5031. package/features/typed-array/of.js +0 -2
  5032. package/features/typed-array/reduce-right.js +0 -2
  5033. package/features/typed-array/reduce.js +0 -2
  5034. package/features/typed-array/reverse.js +0 -2
  5035. package/features/typed-array/set-from-base64.js +0 -2
  5036. package/features/typed-array/set-from-hex.js +0 -2
  5037. package/features/typed-array/set.js +0 -2
  5038. package/features/typed-array/slice.js +0 -2
  5039. package/features/typed-array/some.js +0 -2
  5040. package/features/typed-array/sort.js +0 -2
  5041. package/features/typed-array/subarray.js +0 -2
  5042. package/features/typed-array/to-base64.js +0 -2
  5043. package/features/typed-array/to-hex.js +0 -2
  5044. package/features/typed-array/to-locale-string.js +0 -2
  5045. package/features/typed-array/to-reversed.js +0 -2
  5046. package/features/typed-array/to-sorted.js +0 -2
  5047. package/features/typed-array/to-spliced.js +0 -2
  5048. package/features/typed-array/to-string.js +0 -2
  5049. package/features/typed-array/uint16-array.js +0 -2
  5050. package/features/typed-array/uint32-array.js +0 -2
  5051. package/features/typed-array/uint8-array.js +0 -2
  5052. package/features/typed-array/uint8-clamped-array.js +0 -2
  5053. package/features/typed-array/unique-by.js +0 -2
  5054. package/features/typed-array/values.js +0 -2
  5055. package/features/typed-array/with.js +0 -2
  5056. package/features/unescape.js +0 -2
  5057. package/features/url/can-parse.js +0 -2
  5058. package/features/url/index.js +0 -2
  5059. package/features/url/parse.js +0 -2
  5060. package/features/url/to-json.js +0 -2
  5061. package/features/url-search-params/index.js +0 -2
  5062. package/features/weak-map/delete-all.js +0 -2
  5063. package/features/weak-map/emplace.js +0 -2
  5064. package/features/weak-map/from.js +0 -2
  5065. package/features/weak-map/get-or-insert-computed.js +0 -2
  5066. package/features/weak-map/get-or-insert.js +0 -2
  5067. package/features/weak-map/index.js +0 -2
  5068. package/features/weak-map/of.js +0 -2
  5069. package/features/weak-map/upsert.js +0 -2
  5070. package/features/weak-set/add-all.js +0 -2
  5071. package/features/weak-set/delete-all.js +0 -2
  5072. package/features/weak-set/from.js +0 -2
  5073. package/features/weak-set/index.js +0 -2
  5074. package/features/weak-set/of.js +0 -2
  5075. package/full/README.md +0 -1
  5076. package/full/aggregate-error.js +0 -7
  5077. package/full/array/every.js +0 -4
  5078. package/full/array/filter-out.js +0 -6
  5079. package/full/array/for-each.js +0 -4
  5080. package/full/array/group-by-to-map.js +0 -4
  5081. package/full/array/group-by.js +0 -4
  5082. package/full/array/group-to-map.js +0 -4
  5083. package/full/array/group.js +0 -4
  5084. package/full/array/is-array.js +0 -4
  5085. package/full/array/last-index.js +0 -2
  5086. package/full/array/last-item.js +0 -2
  5087. package/full/array/some.js +0 -4
  5088. package/full/array/virtual/at.js +0 -7
  5089. package/full/array/virtual/concat.js +0 -4
  5090. package/full/array/virtual/copy-within.js +0 -4
  5091. package/full/array/virtual/entries.js +0 -4
  5092. package/full/array/virtual/every.js +0 -4
  5093. package/full/array/virtual/fill.js +0 -4
  5094. package/full/array/virtual/filter-out.js +0 -6
  5095. package/full/array/virtual/filter-reject.js +0 -5
  5096. package/full/array/virtual/filter.js +0 -4
  5097. package/full/array/virtual/find-index.js +0 -4
  5098. package/full/array/virtual/find-last-index.js +0 -4
  5099. package/full/array/virtual/find-last.js +0 -4
  5100. package/full/array/virtual/find.js +0 -4
  5101. package/full/array/virtual/flat-map.js +0 -4
  5102. package/full/array/virtual/flat.js +0 -4
  5103. package/full/array/virtual/for-each.js +0 -4
  5104. package/full/array/virtual/group-by-to-map.js +0 -4
  5105. package/full/array/virtual/group-by.js +0 -4
  5106. package/full/array/virtual/group-to-map.js +0 -4
  5107. package/full/array/virtual/group.js +0 -4
  5108. package/full/array/virtual/includes.js +0 -4
  5109. package/full/array/virtual/index-of.js +0 -4
  5110. package/full/array/virtual/index.js +0 -10
  5111. package/full/array/virtual/iterator.js +0 -4
  5112. package/full/array/virtual/join.js +0 -4
  5113. package/full/array/virtual/keys.js +0 -4
  5114. package/full/array/virtual/last-index-of.js +0 -4
  5115. package/full/array/virtual/map.js +0 -4
  5116. package/full/array/virtual/push.js +0 -4
  5117. package/full/array/virtual/reduce-right.js +0 -4
  5118. package/full/array/virtual/reduce.js +0 -4
  5119. package/full/array/virtual/reverse.js +0 -4
  5120. package/full/array/virtual/slice.js +0 -4
  5121. package/full/array/virtual/some.js +0 -4
  5122. package/full/array/virtual/sort.js +0 -4
  5123. package/full/array/virtual/splice.js +0 -4
  5124. package/full/array/virtual/to-reversed.js +0 -4
  5125. package/full/array/virtual/to-sorted.js +0 -4
  5126. package/full/array/virtual/to-spliced.js +0 -4
  5127. package/full/array/virtual/unique-by.js +0 -6
  5128. package/full/array/virtual/unshift.js +0 -4
  5129. package/full/array/virtual/values.js +0 -4
  5130. package/full/array/virtual/with.js +0 -4
  5131. package/full/async-iterator/as-indexed-pairs.js +0 -9
  5132. package/full/async-iterator/async-dispose.js +0 -4
  5133. package/full/async-iterator/indexed.js +0 -10
  5134. package/full/bigint/index.js +0 -6
  5135. package/full/bigint/range.js +0 -6
  5136. package/full/composite-key.js +0 -5
  5137. package/full/composite-symbol.js +0 -6
  5138. package/full/date/get-year.js +0 -4
  5139. package/full/date/now.js +0 -4
  5140. package/full/date/set-year.js +0 -4
  5141. package/full/date/to-gmt-string.js +0 -4
  5142. package/full/date/to-iso-string.js +0 -4
  5143. package/full/date/to-primitive.js +0 -4
  5144. package/full/date/to-string.js +0 -4
  5145. package/full/dom-exception/to-string-tag.js +0 -4
  5146. package/full/error/to-string.js +0 -4
  5147. package/full/escape.js +0 -4
  5148. package/full/function/bind.js +0 -4
  5149. package/full/function/has-instance.js +0 -4
  5150. package/full/function/is-callable.js +0 -5
  5151. package/full/function/is-constructor.js +0 -5
  5152. package/full/function/metadata.js +0 -4
  5153. package/full/function/un-this.js +0 -5
  5154. package/full/function/virtual/bind.js +0 -4
  5155. package/full/function/virtual/demethodize.js +0 -5
  5156. package/full/function/virtual/index.js +0 -7
  5157. package/full/function/virtual/un-this.js +0 -5
  5158. package/full/instance/bind.js +0 -4
  5159. package/full/instance/code-points.js +0 -11
  5160. package/full/instance/every.js +0 -4
  5161. package/full/instance/filter-out.js +0 -11
  5162. package/full/instance/group-by-to-map.js +0 -4
  5163. package/full/instance/group-by.js +0 -4
  5164. package/full/instance/group-to-map.js +0 -4
  5165. package/full/instance/group.js +0 -4
  5166. package/full/instance/some.js +0 -4
  5167. package/full/instance/un-this.js +0 -10
  5168. package/full/iterator/as-indexed-pairs.js +0 -9
  5169. package/full/iterator/dispose.js +0 -4
  5170. package/full/iterator/indexed.js +0 -10
  5171. package/full/iterator/sliding.js +0 -8
  5172. package/full/json/to-string-tag.js +0 -4
  5173. package/full/map/delete-all.js +0 -6
  5174. package/full/map/emplace.js +0 -6
  5175. package/full/map/every.js +0 -6
  5176. package/full/map/filter.js +0 -6
  5177. package/full/map/find-key.js +0 -6
  5178. package/full/map/find.js +0 -6
  5179. package/full/map/includes.js +0 -6
  5180. package/full/map/key-by.js +0 -30
  5181. package/full/map/key-of.js +0 -6
  5182. package/full/map/map-keys.js +0 -6
  5183. package/full/map/map-values.js +0 -6
  5184. package/full/map/merge.js +0 -6
  5185. package/full/map/reduce.js +0 -6
  5186. package/full/map/some.js +0 -6
  5187. package/full/map/update-or-insert.js +0 -7
  5188. package/full/map/update.js +0 -6
  5189. package/full/map/upsert.js +0 -6
  5190. package/full/math/clamp.js +0 -6
  5191. package/full/math/deg-per-rad.js +0 -4
  5192. package/full/math/degrees.js +0 -5
  5193. package/full/math/fscale.js +0 -5
  5194. package/full/math/iaddh.js +0 -5
  5195. package/full/math/imulh.js +0 -5
  5196. package/full/math/isubh.js +0 -5
  5197. package/full/math/rad-per-deg.js +0 -4
  5198. package/full/math/radians.js +0 -5
  5199. package/full/math/scale.js +0 -5
  5200. package/full/math/seeded-prng.js +0 -5
  5201. package/full/math/signbit.js +0 -5
  5202. package/full/math/to-string-tag.js +0 -4
  5203. package/full/math/umulh.js +0 -5
  5204. package/full/number/from-string.js +0 -5
  5205. package/full/number/range.js +0 -6
  5206. package/full/number/to-precision.js +0 -4
  5207. package/full/number/virtual/clamp.js +0 -5
  5208. package/full/number/virtual/index.js +0 -4
  5209. package/full/number/virtual/to-exponential.js +0 -4
  5210. package/full/number/virtual/to-fixed.js +0 -4
  5211. package/full/number/virtual/to-precision.js +0 -4
  5212. package/full/object/iterate-entries.js +0 -5
  5213. package/full/object/iterate-keys.js +0 -5
  5214. package/full/object/iterate-values.js +0 -5
  5215. package/full/observable/index.js +0 -9
  5216. package/full/reflect/define-metadata.js +0 -5
  5217. package/full/reflect/delete-metadata.js +0 -5
  5218. package/full/reflect/get-metadata-keys.js +0 -5
  5219. package/full/reflect/get-metadata.js +0 -5
  5220. package/full/reflect/get-own-metadata-keys.js +0 -5
  5221. package/full/reflect/get-own-metadata.js +0 -5
  5222. package/full/reflect/has-metadata.js +0 -5
  5223. package/full/reflect/has-own-metadata.js +0 -5
  5224. package/full/reflect/metadata.js +0 -5
  5225. package/full/reflect/to-string-tag.js +0 -4
  5226. package/full/set/add-all.js +0 -6
  5227. package/full/set/delete-all.js +0 -6
  5228. package/full/set/every.js +0 -6
  5229. package/full/set/filter.js +0 -6
  5230. package/full/set/find.js +0 -6
  5231. package/full/set/join.js +0 -6
  5232. package/full/set/map.js +0 -6
  5233. package/full/set/reduce.js +0 -6
  5234. package/full/set/some.js +0 -6
  5235. package/full/set-interval.js +0 -4
  5236. package/full/set-timeout.js +0 -4
  5237. package/full/string/code-points.js +0 -5
  5238. package/full/string/substr.js +0 -4
  5239. package/full/string/virtual/anchor.js +0 -4
  5240. package/full/string/virtual/at.js +0 -7
  5241. package/full/string/virtual/big.js +0 -4
  5242. package/full/string/virtual/blink.js +0 -4
  5243. package/full/string/virtual/bold.js +0 -4
  5244. package/full/string/virtual/code-point-at.js +0 -4
  5245. package/full/string/virtual/code-points.js +0 -6
  5246. package/full/string/virtual/ends-with.js +0 -4
  5247. package/full/string/virtual/fixed.js +0 -4
  5248. package/full/string/virtual/fontcolor.js +0 -4
  5249. package/full/string/virtual/fontsize.js +0 -4
  5250. package/full/string/virtual/includes.js +0 -4
  5251. package/full/string/virtual/index.js +0 -10
  5252. package/full/string/virtual/is-well-formed.js +0 -4
  5253. package/full/string/virtual/italics.js +0 -4
  5254. package/full/string/virtual/iterator.js +0 -4
  5255. package/full/string/virtual/link.js +0 -4
  5256. package/full/string/virtual/match-all.js +0 -7
  5257. package/full/string/virtual/pad-end.js +0 -4
  5258. package/full/string/virtual/pad-start.js +0 -4
  5259. package/full/string/virtual/repeat.js +0 -4
  5260. package/full/string/virtual/replace-all.js +0 -7
  5261. package/full/string/virtual/small.js +0 -4
  5262. package/full/string/virtual/starts-with.js +0 -4
  5263. package/full/string/virtual/strike.js +0 -4
  5264. package/full/string/virtual/sub.js +0 -4
  5265. package/full/string/virtual/substr.js +0 -4
  5266. package/full/string/virtual/sup.js +0 -4
  5267. package/full/string/virtual/to-well-formed.js +0 -4
  5268. package/full/string/virtual/trim-end.js +0 -4
  5269. package/full/string/virtual/trim-left.js +0 -4
  5270. package/full/string/virtual/trim-right.js +0 -4
  5271. package/full/string/virtual/trim-start.js +0 -4
  5272. package/full/string/virtual/trim.js +0 -4
  5273. package/full/suppressed-error.js +0 -4
  5274. package/full/symbol/is-registered.js +0 -6
  5275. package/full/symbol/is-well-known.js +0 -6
  5276. package/full/symbol/matcher.js +0 -5
  5277. package/full/symbol/metadata-key.js +0 -5
  5278. package/full/symbol/observable.js +0 -5
  5279. package/full/symbol/pattern-match.js +0 -6
  5280. package/full/symbol/replace-all.js +0 -6
  5281. package/full/typed-array/filter-out.js +0 -3
  5282. package/full/typed-array/float32-array.js +0 -5
  5283. package/full/typed-array/float64-array.js +0 -5
  5284. package/full/typed-array/from-async.js +0 -2
  5285. package/full/typed-array/group-by.js +0 -2
  5286. package/full/typed-array/int16-array.js +0 -5
  5287. package/full/typed-array/int32-array.js +0 -5
  5288. package/full/typed-array/int8-array.js +0 -5
  5289. package/full/typed-array/to-spliced.js +0 -5
  5290. package/full/typed-array/uint16-array.js +0 -5
  5291. package/full/typed-array/uint32-array.js +0 -5
  5292. package/full/typed-array/uint8-array.js +0 -5
  5293. package/full/typed-array/uint8-clamped-array.js +0 -5
  5294. package/full/unescape.js +0 -4
  5295. package/full/weak-map/delete-all.js +0 -6
  5296. package/full/weak-map/emplace.js +0 -6
  5297. package/full/weak-map/upsert.js +0 -6
  5298. package/full/weak-set/add-all.js +0 -6
  5299. package/full/weak-set/delete-all.js +0 -6
  5300. package/internals/a-map.js +0 -8
  5301. package/internals/a-weak-set.js +0 -8
  5302. package/internals/array-buffer-basic-detection.js +0 -3
  5303. package/internals/array-buffer-view-core.js +0 -193
  5304. package/internals/array-buffer.js +0 -259
  5305. package/internals/array-for-each.js +0 -12
  5306. package/internals/array-from-async.js +0 -49
  5307. package/internals/array-from.js +0 -52
  5308. package/internals/array-group-to-map.js +0 -31
  5309. package/internals/array-group.js +0 -37
  5310. package/internals/array-last-index-of.js +0 -28
  5311. package/internals/async-iterator-indexed.js +0 -13
  5312. package/internals/async-iterator-map.js +0 -59
  5313. package/internals/composite-key.js +0 -50
  5314. package/internals/correct-prototype-getter.js +0 -9
  5315. package/internals/date-to-iso-string.js +0 -41
  5316. package/internals/descriptors.js +0 -8
  5317. package/internals/entry-virtual.js +0 -6
  5318. package/internals/enum-bug-keys.js +0 -11
  5319. package/internals/error-to-string.js +0 -29
  5320. package/internals/freezing.js +0 -7
  5321. package/internals/function-bind-native.js +0 -9
  5322. package/internals/function-demethodize.js +0 -7
  5323. package/internals/hidden-keys.js +0 -2
  5324. package/internals/html.js +0 -4
  5325. package/internals/ie8-dom-define.js +0 -12
  5326. package/internals/ieee754.js +0 -103
  5327. package/internals/indexed-object.js +0 -16
  5328. package/internals/internal-metadata.js +0 -91
  5329. package/internals/is-array.js +0 -9
  5330. package/internals/is-forced.js +0 -23
  5331. package/internals/iterator-indexed.js +0 -14
  5332. package/internals/iterator-window.js +0 -50
  5333. package/internals/iterators-core.js +0 -49
  5334. package/internals/map-upsert.js +0 -31
  5335. package/internals/math-clamp.js +0 -9
  5336. package/internals/math-float-round.js +0 -19
  5337. package/internals/math-fround.js +0 -13
  5338. package/internals/math-log2.js +0 -10
  5339. package/internals/math-scale.js +0 -14
  5340. package/internals/number-parse-float.js +0 -23
  5341. package/internals/number-parse-int.js +0 -23
  5342. package/internals/numeric-range-iterator.js +0 -111
  5343. package/internals/object-assign.js +0 -58
  5344. package/internals/object-create.js +0 -85
  5345. package/internals/object-get-prototype-of.js +0 -22
  5346. package/internals/object-iterator.js +0 -38
  5347. package/internals/object-keys-internal.js +0 -21
  5348. package/internals/object-keys.js +0 -10
  5349. package/internals/reflect-metadata.js +0 -62
  5350. package/internals/schedulers-fix.js +0 -31
  5351. package/internals/set-difference.js +0 -26
  5352. package/internals/set-intersection.js +0 -31
  5353. package/internals/set-is-disjoint-from.js +0 -22
  5354. package/internals/set-is-subset-of.js +0 -16
  5355. package/internals/set-is-superset-of.js +0 -19
  5356. package/internals/set-symmetric-difference.js +0 -23
  5357. package/internals/set-union.js +0 -18
  5358. package/internals/shared-key.js +0 -9
  5359. package/internals/string-repeat.js +0 -18
  5360. package/internals/symbol-is-registered.js +0 -17
  5361. package/internals/symbol-is-well-known.js +0 -35
  5362. package/internals/to-indexed-object.js +0 -8
  5363. package/internals/to-set-like.js +0 -20
  5364. package/internals/to-uint8-clamped.js +0 -15
  5365. package/internals/v8-prototype-define-bug.js +0 -13
  5366. package/internals/weak-map-basic-detection.js +0 -7
  5367. package/modules/es.aggregate-error.js +0 -3
  5368. package/modules/es.array.every.js +0 -14
  5369. package/modules/es.array.for-each.js +0 -10
  5370. package/modules/es.array.is-array.js +0 -9
  5371. package/modules/es.array.some.js +0 -14
  5372. package/modules/es.data-view.js +0 -3
  5373. package/modules/es.date.get-year.js +0 -20
  5374. package/modules/es.date.now.js +0 -15
  5375. package/modules/es.date.set-year.js +0 -23
  5376. package/modules/es.date.to-gmt-string.js +0 -8
  5377. package/modules/es.date.to-iso-string.js +0 -10
  5378. package/modules/es.date.to-string.js +0 -20
  5379. package/modules/es.error.to-string.js +0 -11
  5380. package/modules/es.escape.js +0 -43
  5381. package/modules/es.function.bind.js +0 -11
  5382. package/modules/es.map.js +0 -3
  5383. package/modules/es.number.to-precision.js +0 -25
  5384. package/modules/es.object.create.js +0 -11
  5385. package/modules/es.object.define-properties.js +0 -11
  5386. package/modules/es.object.define-property.js +0 -11
  5387. package/modules/es.promise.js +0 -8
  5388. package/modules/es.set.difference.v2.js +0 -37
  5389. package/modules/es.set.intersection.v2.js +0 -18
  5390. package/modules/es.set.is-disjoint-from.v2.js +0 -14
  5391. package/modules/es.set.is-subset-of.v2.js +0 -14
  5392. package/modules/es.set.is-superset-of.v2.js +0 -14
  5393. package/modules/es.set.js +0 -3
  5394. package/modules/es.set.symmetric-difference.v2.js +0 -13
  5395. package/modules/es.set.union.v2.js +0 -13
  5396. package/modules/es.string.at-alternative.js +0 -26
  5397. package/modules/es.string.substr.js +0 -28
  5398. package/modules/es.symbol.js +0 -7
  5399. package/modules/es.unescape.js +0 -45
  5400. package/modules/es.weak-map.js +0 -3
  5401. package/modules/es.weak-set.js +0 -3
  5402. package/modules/esnext.aggregate-error.js +0 -3
  5403. package/modules/esnext.array-buffer.detached.js +0 -3
  5404. package/modules/esnext.array-buffer.transfer-to-fixed-length.js +0 -3
  5405. package/modules/esnext.array-buffer.transfer.js +0 -3
  5406. package/modules/esnext.array.at.js +0 -3
  5407. package/modules/esnext.array.filter-out.js +0 -15
  5408. package/modules/esnext.array.find-last-index.js +0 -3
  5409. package/modules/esnext.array.find-last.js +0 -3
  5410. package/modules/esnext.array.from-async.js +0 -3
  5411. package/modules/esnext.array.group-by-to-map.js +0 -16
  5412. package/modules/esnext.array.group-by.js +0 -18
  5413. package/modules/esnext.array.group-to-map.js +0 -13
  5414. package/modules/esnext.array.group.js +0 -15
  5415. package/modules/esnext.array.last-index.js +0 -22
  5416. package/modules/esnext.array.last-item.js +0 -27
  5417. package/modules/esnext.array.to-reversed.js +0 -3
  5418. package/modules/esnext.array.to-sorted.js +0 -3
  5419. package/modules/esnext.array.to-spliced.js +0 -3
  5420. package/modules/esnext.array.with.js +0 -3
  5421. package/modules/esnext.async-disposable-stack.constructor.js +0 -3
  5422. package/modules/esnext.async-iterator.as-indexed-pairs.js +0 -10
  5423. package/modules/esnext.async-iterator.async-dispose.js +0 -3
  5424. package/modules/esnext.async-iterator.indexed.js +0 -10
  5425. package/modules/esnext.bigint.range.js +0 -15
  5426. package/modules/esnext.composite-key.js +0 -20
  5427. package/modules/esnext.composite-symbol.js +0 -13
  5428. package/modules/esnext.data-view.get-float16.js +0 -3
  5429. package/modules/esnext.data-view.set-float16.js +0 -3
  5430. package/modules/esnext.disposable-stack.constructor.js +0 -3
  5431. package/modules/esnext.error.is-error.js +0 -3
  5432. package/modules/esnext.function.is-callable.js +0 -30
  5433. package/modules/esnext.function.is-constructor.js +0 -9
  5434. package/modules/esnext.function.un-this.js +0 -10
  5435. package/modules/esnext.global-this.js +0 -3
  5436. package/modules/esnext.iterator.as-indexed-pairs.js +0 -10
  5437. package/modules/esnext.iterator.concat.js +0 -3
  5438. package/modules/esnext.iterator.constructor.js +0 -3
  5439. package/modules/esnext.iterator.dispose.js +0 -3
  5440. package/modules/esnext.iterator.drop.js +0 -3
  5441. package/modules/esnext.iterator.every.js +0 -3
  5442. package/modules/esnext.iterator.filter.js +0 -3
  5443. package/modules/esnext.iterator.find.js +0 -3
  5444. package/modules/esnext.iterator.flat-map.js +0 -3
  5445. package/modules/esnext.iterator.for-each.js +0 -3
  5446. package/modules/esnext.iterator.from.js +0 -3
  5447. package/modules/esnext.iterator.indexed.js +0 -10
  5448. package/modules/esnext.iterator.map.js +0 -3
  5449. package/modules/esnext.iterator.reduce.js +0 -3
  5450. package/modules/esnext.iterator.sliding.js +0 -11
  5451. package/modules/esnext.iterator.some.js +0 -3
  5452. package/modules/esnext.iterator.take.js +0 -3
  5453. package/modules/esnext.iterator.to-array.js +0 -3
  5454. package/modules/esnext.json.is-raw-json.js +0 -3
  5455. package/modules/esnext.json.parse.js +0 -3
  5456. package/modules/esnext.json.raw-json.js +0 -3
  5457. package/modules/esnext.map.delete-all.js +0 -18
  5458. package/modules/esnext.map.emplace.js +0 -27
  5459. package/modules/esnext.map.every.js +0 -17
  5460. package/modules/esnext.map.filter.js +0 -23
  5461. package/modules/esnext.map.find-key.js +0 -18
  5462. package/modules/esnext.map.find.js +0 -18
  5463. package/modules/esnext.map.get-or-insert-computed.js +0 -3
  5464. package/modules/esnext.map.get-or-insert.js +0 -3
  5465. package/modules/esnext.map.group-by.js +0 -3
  5466. package/modules/esnext.map.includes.js +0 -15
  5467. package/modules/esnext.map.key-by.js +0 -22
  5468. package/modules/esnext.map.key-of.js +0 -15
  5469. package/modules/esnext.map.map-keys.js +0 -23
  5470. package/modules/esnext.map.map-values.js +0 -23
  5471. package/modules/esnext.map.merge.js +0 -22
  5472. package/modules/esnext.map.reduce.js +0 -28
  5473. package/modules/esnext.map.some.js +0 -17
  5474. package/modules/esnext.map.update-or-insert.js +0 -10
  5475. package/modules/esnext.map.update.js +0 -27
  5476. package/modules/esnext.map.upsert.js +0 -10
  5477. package/modules/esnext.math.clamp.js +0 -10
  5478. package/modules/esnext.math.deg-per-rad.js +0 -8
  5479. package/modules/esnext.math.degrees.js +0 -12
  5480. package/modules/esnext.math.f16round.js +0 -3
  5481. package/modules/esnext.math.fscale.js +0 -13
  5482. package/modules/esnext.math.iaddh.js +0 -14
  5483. package/modules/esnext.math.imulh.js +0 -19
  5484. package/modules/esnext.math.isubh.js +0 -14
  5485. package/modules/esnext.math.rad-per-deg.js +0 -8
  5486. package/modules/esnext.math.radians.js +0 -12
  5487. package/modules/esnext.math.scale.js +0 -9
  5488. package/modules/esnext.math.seeded-prng.js +0 -36
  5489. package/modules/esnext.math.signbit.js +0 -12
  5490. package/modules/esnext.math.sum-precise.js +0 -3
  5491. package/modules/esnext.math.umulh.js +0 -19
  5492. package/modules/esnext.number.from-string.js +0 -68
  5493. package/modules/esnext.number.range.js +0 -12
  5494. package/modules/esnext.object.group-by.js +0 -3
  5495. package/modules/esnext.object.has-own.js +0 -3
  5496. package/modules/esnext.object.iterate-entries.js +0 -12
  5497. package/modules/esnext.object.iterate-keys.js +0 -12
  5498. package/modules/esnext.object.iterate-values.js +0 -12
  5499. package/modules/esnext.observable.constructor.js +0 -187
  5500. package/modules/esnext.observable.from.js +0 -38
  5501. package/modules/esnext.observable.js +0 -5
  5502. package/modules/esnext.observable.of.js +0 -24
  5503. package/modules/esnext.promise.all-settled.js +0 -3
  5504. package/modules/esnext.promise.any.js +0 -3
  5505. package/modules/esnext.promise.try.js +0 -3
  5506. package/modules/esnext.promise.with-resolvers.js +0 -3
  5507. package/modules/esnext.reflect.define-metadata.js +0 -17
  5508. package/modules/esnext.reflect.delete-metadata.js +0 -22
  5509. package/modules/esnext.reflect.get-metadata-keys.js +0 -30
  5510. package/modules/esnext.reflect.get-metadata.js +0 -26
  5511. package/modules/esnext.reflect.get-own-metadata-keys.js +0 -17
  5512. package/modules/esnext.reflect.get-own-metadata.js +0 -17
  5513. package/modules/esnext.reflect.has-metadata.js +0 -25
  5514. package/modules/esnext.reflect.has-own-metadata.js +0 -17
  5515. package/modules/esnext.reflect.metadata.js +0 -17
  5516. package/modules/esnext.regexp.escape.js +0 -3
  5517. package/modules/esnext.set.add-all.js +0 -15
  5518. package/modules/esnext.set.delete-all.js +0 -18
  5519. package/modules/esnext.set.difference.js +0 -14
  5520. package/modules/esnext.set.difference.v2.js +0 -3
  5521. package/modules/esnext.set.every.js +0 -17
  5522. package/modules/esnext.set.filter.js +0 -23
  5523. package/modules/esnext.set.find.js +0 -18
  5524. package/modules/esnext.set.intersection.js +0 -14
  5525. package/modules/esnext.set.intersection.v2.js +0 -3
  5526. package/modules/esnext.set.is-disjoint-from.js +0 -14
  5527. package/modules/esnext.set.is-disjoint-from.v2.js +0 -3
  5528. package/modules/esnext.set.is-subset-of.js +0 -14
  5529. package/modules/esnext.set.is-subset-of.v2.js +0 -3
  5530. package/modules/esnext.set.is-superset-of.js +0 -14
  5531. package/modules/esnext.set.is-superset-of.v2.js +0 -3
  5532. package/modules/esnext.set.join.js +0 -23
  5533. package/modules/esnext.set.map.js +0 -23
  5534. package/modules/esnext.set.reduce.js +0 -28
  5535. package/modules/esnext.set.some.js +0 -17
  5536. package/modules/esnext.set.symmetric-difference.js +0 -14
  5537. package/modules/esnext.set.symmetric-difference.v2.js +0 -3
  5538. package/modules/esnext.set.union.js +0 -14
  5539. package/modules/esnext.set.union.v2.js +0 -3
  5540. package/modules/esnext.string.at-alternative.js +0 -3
  5541. package/modules/esnext.string.at.js +0 -19
  5542. package/modules/esnext.string.code-points.js +0 -40
  5543. package/modules/esnext.string.is-well-formed.js +0 -3
  5544. package/modules/esnext.string.match-all.js +0 -3
  5545. package/modules/esnext.string.replace-all.js +0 -3
  5546. package/modules/esnext.string.to-well-formed.js +0 -3
  5547. package/modules/esnext.suppressed-error.constructor.js +0 -3
  5548. package/modules/esnext.symbol.async-dispose.js +0 -3
  5549. package/modules/esnext.symbol.dispose.js +0 -3
  5550. package/modules/esnext.symbol.is-registered.js +0 -9
  5551. package/modules/esnext.symbol.is-well-known.js +0 -10
  5552. package/modules/esnext.symbol.matcher.js +0 -6
  5553. package/modules/esnext.symbol.metadata-key.js +0 -7
  5554. package/modules/esnext.symbol.observable.js +0 -6
  5555. package/modules/esnext.symbol.pattern-match.js +0 -7
  5556. package/modules/esnext.symbol.replace-all.js +0 -5
  5557. package/modules/esnext.typed-array.at.js +0 -3
  5558. package/modules/esnext.typed-array.filter-out.js +0 -15
  5559. package/modules/esnext.typed-array.find-last-index.js +0 -3
  5560. package/modules/esnext.typed-array.find-last.js +0 -3
  5561. package/modules/esnext.typed-array.from-async.js +0 -25
  5562. package/modules/esnext.typed-array.group-by.js +0 -15
  5563. package/modules/esnext.typed-array.to-reversed.js +0 -3
  5564. package/modules/esnext.typed-array.to-sorted.js +0 -3
  5565. package/modules/esnext.typed-array.to-spliced.js +0 -52
  5566. package/modules/esnext.typed-array.with.js +0 -3
  5567. package/modules/esnext.uint8-array.from-base64.js +0 -3
  5568. package/modules/esnext.uint8-array.from-hex.js +0 -3
  5569. package/modules/esnext.uint8-array.set-from-base64.js +0 -3
  5570. package/modules/esnext.uint8-array.set-from-hex.js +0 -3
  5571. package/modules/esnext.uint8-array.to-base64.js +0 -3
  5572. package/modules/esnext.uint8-array.to-hex.js +0 -3
  5573. package/modules/esnext.weak-map.delete-all.js +0 -18
  5574. package/modules/esnext.weak-map.emplace.js +0 -27
  5575. package/modules/esnext.weak-map.get-or-insert-computed.js +0 -3
  5576. package/modules/esnext.weak-map.get-or-insert.js +0 -3
  5577. package/modules/esnext.weak-map.upsert.js +0 -10
  5578. package/modules/esnext.weak-set.add-all.js +0 -15
  5579. package/modules/esnext.weak-set.delete-all.js +0 -18
  5580. package/modules/web.immediate.js +0 -4
  5581. package/modules/web.set-interval.js +0 -12
  5582. package/modules/web.set-timeout.js +0 -12
  5583. package/modules/web.timers.js +0 -4
  5584. package/modules/web.url-search-params.js +0 -3
  5585. package/modules/web.url.js +0 -3
  5586. package/postinstall.js +0 -62
  5587. package/proposals/array-filtering-stage-1.js +0 -4
  5588. package/proposals/array-from-async-stage-2.js +0 -3
  5589. package/proposals/array-grouping-stage-3-2.js +0 -4
  5590. package/proposals/array-grouping-stage-3.js +0 -5
  5591. package/proposals/array-grouping-v2.js +0 -4
  5592. package/proposals/array-last.js +0 -4
  5593. package/proposals/async-explicit-resource-management.js +0 -7
  5594. package/proposals/change-array-by-copy-stage-4.js +0 -9
  5595. package/proposals/collection-methods.js +0 -29
  5596. package/proposals/decorator-metadata-v2.js +0 -4
  5597. package/proposals/decorators.js +0 -4
  5598. package/proposals/efficient-64-bit-arithmetic.js +0 -7
  5599. package/proposals/function-is-callable-is-constructor.js +0 -4
  5600. package/proposals/function-un-this.js +0 -4
  5601. package/proposals/index.js +0 -3
  5602. package/proposals/iterator-chunking-v2.js +0 -4
  5603. package/proposals/iterator-helpers-stage-3-2.js +0 -15
  5604. package/proposals/iterator-helpers-stage-3.js +0 -29
  5605. package/proposals/keys-composition.js +0 -4
  5606. package/proposals/map-update-or-insert.js +0 -4
  5607. package/proposals/map-upsert-stage-2.js +0 -4
  5608. package/proposals/map-upsert-v4.js +0 -6
  5609. package/proposals/math-clamp-v2.js +0 -3
  5610. package/proposals/math-extensions.js +0 -9
  5611. package/proposals/math-signbit.js +0 -3
  5612. package/proposals/number-from-string.js +0 -3
  5613. package/proposals/number-range.js +0 -4
  5614. package/proposals/object-iteration.js +0 -6
  5615. package/proposals/observable.js +0 -4
  5616. package/proposals/pattern-matching-v2.js +0 -3
  5617. package/proposals/reflect-metadata.js +0 -11
  5618. package/proposals/seeded-random.js +0 -3
  5619. package/proposals/set-methods-v2.js +0 -9
  5620. package/proposals/string-at.js +0 -3
  5621. package/proposals/string-code-points.js +0 -3
  5622. package/proposals/string-replace-all-stage-4.js +0 -3
  5623. package/proposals/symbol-predicates-v2.js +0 -4
  5624. package/proposals/url.js +0 -3
  5625. package/proposals/using-statement.js +0 -5
  5626. package/stable/README.md +0 -1
  5627. package/stable/aggregate-error.js +0 -8
  5628. package/stable/array/every.js +0 -4
  5629. package/stable/array/for-each.js +0 -4
  5630. package/stable/array/is-array.js +0 -4
  5631. package/stable/array/some.js +0 -4
  5632. package/stable/array/virtual/at.js +0 -4
  5633. package/stable/array/virtual/concat.js +0 -4
  5634. package/stable/array/virtual/copy-within.js +0 -4
  5635. package/stable/array/virtual/entries.js +0 -4
  5636. package/stable/array/virtual/every.js +0 -4
  5637. package/stable/array/virtual/fill.js +0 -4
  5638. package/stable/array/virtual/filter.js +0 -4
  5639. package/stable/array/virtual/find-index.js +0 -4
  5640. package/stable/array/virtual/find-last-index.js +0 -2
  5641. package/stable/array/virtual/find-last.js +0 -2
  5642. package/stable/array/virtual/find.js +0 -4
  5643. package/stable/array/virtual/flat-map.js +0 -4
  5644. package/stable/array/virtual/flat.js +0 -4
  5645. package/stable/array/virtual/for-each.js +0 -4
  5646. package/stable/array/virtual/includes.js +0 -4
  5647. package/stable/array/virtual/index-of.js +0 -4
  5648. package/stable/array/virtual/index.js +0 -4
  5649. package/stable/array/virtual/iterator.js +0 -4
  5650. package/stable/array/virtual/join.js +0 -4
  5651. package/stable/array/virtual/keys.js +0 -4
  5652. package/stable/array/virtual/last-index-of.js +0 -4
  5653. package/stable/array/virtual/map.js +0 -4
  5654. package/stable/array/virtual/push.js +0 -4
  5655. package/stable/array/virtual/reduce-right.js +0 -4
  5656. package/stable/array/virtual/reduce.js +0 -4
  5657. package/stable/array/virtual/reverse.js +0 -4
  5658. package/stable/array/virtual/slice.js +0 -4
  5659. package/stable/array/virtual/some.js +0 -4
  5660. package/stable/array/virtual/sort.js +0 -4
  5661. package/stable/array/virtual/splice.js +0 -4
  5662. package/stable/array/virtual/to-reversed.js +0 -4
  5663. package/stable/array/virtual/to-sorted.js +0 -4
  5664. package/stable/array/virtual/to-spliced.js +0 -4
  5665. package/stable/array/virtual/unshift.js +0 -4
  5666. package/stable/array/virtual/values.js +0 -4
  5667. package/stable/array/virtual/with.js +0 -4
  5668. package/stable/async-iterator/async-dispose.js +0 -2
  5669. package/stable/date/get-year.js +0 -4
  5670. package/stable/date/now.js +0 -4
  5671. package/stable/date/set-year.js +0 -4
  5672. package/stable/date/to-gmt-string.js +0 -4
  5673. package/stable/date/to-iso-string.js +0 -4
  5674. package/stable/date/to-primitive.js +0 -4
  5675. package/stable/date/to-string.js +0 -4
  5676. package/stable/dom-exception/to-string-tag.js +0 -4
  5677. package/stable/error/to-string.js +0 -4
  5678. package/stable/escape.js +0 -4
  5679. package/stable/function/bind.js +0 -4
  5680. package/stable/function/has-instance.js +0 -4
  5681. package/stable/function/virtual/bind.js +0 -4
  5682. package/stable/function/virtual/index.js +0 -4
  5683. package/stable/instance/bind.js +0 -4
  5684. package/stable/instance/every.js +0 -4
  5685. package/stable/instance/some.js +0 -4
  5686. package/stable/iterator/dispose.js +0 -4
  5687. package/stable/json/to-string-tag.js +0 -4
  5688. package/stable/math/to-string-tag.js +0 -4
  5689. package/stable/number/to-precision.js +0 -4
  5690. package/stable/number/virtual/index.js +0 -4
  5691. package/stable/number/virtual/to-exponential.js +0 -4
  5692. package/stable/number/virtual/to-fixed.js +0 -4
  5693. package/stable/number/virtual/to-precision.js +0 -4
  5694. package/stable/reflect/to-string-tag.js +0 -4
  5695. package/stable/set-interval.js +0 -5
  5696. package/stable/set-timeout.js +0 -5
  5697. package/stable/string/substr.js +0 -4
  5698. package/stable/string/virtual/anchor.js +0 -4
  5699. package/stable/string/virtual/at.js +0 -4
  5700. package/stable/string/virtual/big.js +0 -4
  5701. package/stable/string/virtual/blink.js +0 -4
  5702. package/stable/string/virtual/bold.js +0 -4
  5703. package/stable/string/virtual/code-point-at.js +0 -4
  5704. package/stable/string/virtual/ends-with.js +0 -4
  5705. package/stable/string/virtual/fixed.js +0 -4
  5706. package/stable/string/virtual/fontcolor.js +0 -4
  5707. package/stable/string/virtual/fontsize.js +0 -4
  5708. package/stable/string/virtual/includes.js +0 -4
  5709. package/stable/string/virtual/index.js +0 -4
  5710. package/stable/string/virtual/is-well-formed.js +0 -4
  5711. package/stable/string/virtual/italics.js +0 -4
  5712. package/stable/string/virtual/iterator.js +0 -4
  5713. package/stable/string/virtual/link.js +0 -4
  5714. package/stable/string/virtual/match-all.js +0 -4
  5715. package/stable/string/virtual/pad-end.js +0 -4
  5716. package/stable/string/virtual/pad-start.js +0 -4
  5717. package/stable/string/virtual/repeat.js +0 -4
  5718. package/stable/string/virtual/replace-all.js +0 -4
  5719. package/stable/string/virtual/small.js +0 -4
  5720. package/stable/string/virtual/starts-with.js +0 -4
  5721. package/stable/string/virtual/strike.js +0 -4
  5722. package/stable/string/virtual/sub.js +0 -4
  5723. package/stable/string/virtual/substr.js +0 -4
  5724. package/stable/string/virtual/sup.js +0 -4
  5725. package/stable/string/virtual/to-well-formed.js +0 -4
  5726. package/stable/string/virtual/trim-end.js +0 -4
  5727. package/stable/string/virtual/trim-left.js +0 -4
  5728. package/stable/string/virtual/trim-right.js +0 -4
  5729. package/stable/string/virtual/trim-start.js +0 -4
  5730. package/stable/string/virtual/trim.js +0 -4
  5731. package/stable/suppressed-error.js +0 -4
  5732. package/stable/typed-array/float32-array.js +0 -5
  5733. package/stable/typed-array/float64-array.js +0 -5
  5734. package/stable/typed-array/int16-array.js +0 -5
  5735. package/stable/typed-array/int32-array.js +0 -5
  5736. package/stable/typed-array/int8-array.js +0 -5
  5737. package/stable/typed-array/uint16-array.js +0 -5
  5738. package/stable/typed-array/uint32-array.js +0 -5
  5739. package/stable/typed-array/uint8-array.js +0 -5
  5740. package/stable/typed-array/uint8-clamped-array.js +0 -5
  5741. package/stable/unescape.js +0 -4
  5742. package/stage/4.js +0 -33
  5743. package/stage/README.md +0 -1
  5744. package/stage/index.js +0 -4
  5745. package/stage/pre.js +0 -6
  5746. package/web/README.md +0 -1
  5747. package/web/dom-collections.js +0 -6
  5748. package/web/dom-exception.js +0 -8
  5749. package/web/immediate.js +0 -5
  5750. package/web/index.js +0 -24
  5751. package/web/queue-microtask.js +0 -5
  5752. package/web/structured-clone.js +0 -9
  5753. package/web/timers.js +0 -5
  5754. package/web/url-search-params.js +0 -8
  5755. package/web/url.js +0 -9
package/LICENSE CHANGED
@@ -1,20 +1,32 @@
1
- Copyright (c) 2013–2025 Denis Pushkarev (zloirock.ru)
2
- Copyright (c) 2025–2026 CoreJS Company (core-js.io)
3
-
4
- Permission is hereby granted, free of charge, to any person obtaining a copy
5
- of this software and associated documentation files (the "Software"), to deal
6
- in the Software without restriction, including without limitation the rights
7
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
- copies of the Software, and to permit persons to whom the Software is
9
- furnished to do so, subject to the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be included in
12
- all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20
- 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
@@ -2,7 +2,7 @@
2
2
 
3
3
  <div align="center">
4
4
 
5
- [![fundraising](https://opencollective.com/core-js/all/badge.svg?label=fundraising)](https://opencollective.com/core-js) [![PRs welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/zloirock/core-js/blob/master/CONTRIBUTING.md) [![version](https://img.shields.io/npm/v/core-js.svg)](https://www.npmjs.com/package/core-js) [![core-js downloads](https://img.shields.io/npm/dm/core-js.svg?label=npm%20i%20core-js)](https://npm-stat.com/charts.html?package=core-js&package=core-js-pure&package=core-js-compat&from=2014-11-18)
5
+ [![fundraising](https://opencollective.com/core-js/all/badge.svg?label=fundraising)](https://opencollective.com/core-js) [![PRs welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/zloirock/core-js/blob/master/CONTRIBUTING.md) [![version](https://img.shields.io/npm/v/core-js.svg)](https://www.npmjs.com/package/core-js) [![core-js downloads](https://img.shields.io/npm/dm/core-js.svg?label=npm%20i%20core-js)](https://npm-stat.com/charts.html?package=core-js&package=@core-js/pure&package=@core-js/compat&from=2014-11-18)
6
6
 
7
7
  </div>
8
8
 
@@ -70,12 +70,12 @@ structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
70
70
 
71
71
  *Or use it without global namespace pollution*:
72
72
  ```js
73
- import Promise from 'core-js-pure/actual/promise';
74
- import Set from 'core-js-pure/actual/set';
75
- import Iterator from 'core-js-pure/actual/iterator';
76
- import from from 'core-js-pure/actual/array/from';
77
- import flatMap from 'core-js-pure/actual/array/flat-map';
78
- import structuredClone from 'core-js-pure/actual/structured-clone';
73
+ import Promise from '@core-js/pure/actual/promise';
74
+ import Set from '@core-js/pure/actual/set';
75
+ import Iterator from '@core-js/pure/actual/iterator';
76
+ import from from '@core-js/pure/actual/array/from';
77
+ import flatMap from '@core-js/pure/actual/array/flat-map';
78
+ import structuredClone from '@core-js/pure/actual/structured-clone';
79
79
 
80
80
  Promise.try(() => 42).then(it => console.log(it)); // => 42
81
81
 
@@ -0,0 +1,11 @@
1
+ 'use strict';
2
+ require('../../modules/es.object.to-string');
3
+ require('../../modules/es.aggregate-error.constructor');
4
+ require('../../modules/es.aggregate-error.cause');
5
+ require('../../modules/es.array.iterator');
6
+ require('../../modules/es.string.iterator');
7
+ require('../../modules/web.dom-collections.iterator');
8
+
9
+ var path = require('../../internals/path');
10
+
11
+ module.exports = path.AggregateError;
@@ -0,0 +1,12 @@
1
+ 'use strict';
2
+ require('../../modules/es.object.to-string');
3
+ require('../../modules/es.error.is-error');
4
+ require('../../modules/es.aggregate-error.constructor');
5
+ require('../../modules/es.aggregate-error.cause');
6
+ require('../../modules/es.array.iterator');
7
+ require('../../modules/es.string.iterator');
8
+ require('../../modules/web.dom-collections.iterator');
9
+
10
+ var path = require('../../internals/path');
11
+
12
+ module.exports = path.AggregateError;
@@ -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');
@@ -1,4 +1,6 @@
1
1
  'use strict';
2
- var parent = require('../../stable/array/at');
2
+ require('../../modules/es.array.at');
3
3
 
4
- module.exports = parent;
4
+ var entryUnbind = require('../../internals/entry-unbind');
5
+
6
+ module.exports = entryUnbind('Array', 'at');
@@ -1,4 +1,6 @@
1
1
  'use strict';
2
- var parent = require('../../stable/array/concat');
2
+ require('../../modules/es.array.concat');
3
3
 
4
- module.exports = parent;
4
+ var entryUnbind = require('../../internals/entry-unbind');
5
+
6
+ module.exports = entryUnbind('Array', 'concat');
@@ -1,4 +1,6 @@
1
1
  'use strict';
2
- var parent = require('../../stable/array/copy-within');
2
+ require('../../modules/es.array.copy-within');
3
3
 
4
- module.exports = parent;
4
+ var entryUnbind = require('../../internals/entry-unbind');
5
+
6
+ module.exports = entryUnbind('Array', 'copyWithin');
@@ -1,4 +1,7 @@
1
1
  'use strict';
2
- var parent = require('../../stable/array/entries');
2
+ require('../../modules/es.object.to-string');
3
+ require('../../modules/es.array.entries');
3
4
 
4
- module.exports = parent;
5
+ var entryUnbind = require('../../internals/entry-unbind');
6
+
7
+ module.exports = entryUnbind('Array', 'entries');
@@ -1,4 +1,6 @@
1
1
  'use strict';
2
- var parent = require('../../stable/array/fill');
2
+ require('../../modules/es.array.fill');
3
3
 
4
- module.exports = parent;
4
+ var entryUnbind = require('../../internals/entry-unbind');
5
+
6
+ module.exports = entryUnbind('Array', 'fill');
@@ -1,4 +1,6 @@
1
1
  'use strict';
2
- var parent = require('../../stable/array/filter');
2
+ require('../../modules/es.array.filter');
3
3
 
4
- module.exports = parent;
4
+ var entryUnbind = require('../../internals/entry-unbind');
5
+
6
+ module.exports = entryUnbind('Array', 'filter');
@@ -1,4 +1,6 @@
1
1
  'use strict';
2
- var parent = require('../../stable/array/find-index');
2
+ require('../../modules/es.array.find-index');
3
3
 
4
- module.exports = parent;
4
+ var entryUnbind = require('../../internals/entry-unbind');
5
+
6
+ module.exports = entryUnbind('Array', 'findIndex');
@@ -1,5 +1,6 @@
1
1
  'use strict';
2
- require('../../modules/esnext.array.find-last-index');
3
- var parent = require('../../stable/array/find-last-index');
2
+ require('../../modules/es.array.find-last-index');
4
3
 
5
- module.exports = parent;
4
+ var entryUnbind = require('../../internals/entry-unbind');
5
+
6
+ module.exports = entryUnbind('Array', 'findLastIndex');
@@ -1,5 +1,6 @@
1
1
  'use strict';
2
- require('../../modules/esnext.array.find-last');
3
- var parent = require('../../stable/array/find-last');
2
+ require('../../modules/es.array.find-last');
4
3
 
5
- module.exports = parent;
4
+ var entryUnbind = require('../../internals/entry-unbind');
5
+
6
+ module.exports = entryUnbind('Array', 'findLast');
@@ -1,4 +1,6 @@
1
1
  'use strict';
2
- var parent = require('../../stable/array/find');
2
+ require('../../modules/es.array.find');
3
3
 
4
- module.exports = parent;
4
+ var entryUnbind = require('../../internals/entry-unbind');
5
+
6
+ module.exports = entryUnbind('Array', 'find');
@@ -1,4 +1,7 @@
1
1
  'use strict';
2
- var parent = require('../../stable/array/flat-map');
2
+ require('../../modules/es.array.flat-map');
3
+ require('../../modules/es.array.unscopables.flat-map');
3
4
 
4
- module.exports = parent;
5
+ var entryUnbind = require('../../internals/entry-unbind');
6
+
7
+ module.exports = entryUnbind('Array', 'flatMap');
@@ -1,4 +1,7 @@
1
1
  'use strict';
2
- var parent = require('../../stable/array/flat');
2
+ require('../../modules/es.array.flat');
3
+ require('../../modules/es.array.unscopables.flat');
3
4
 
4
- module.exports = parent;
5
+ var entryUnbind = require('../../internals/entry-unbind');
6
+
7
+ module.exports = entryUnbind('Array', 'flat');
@@ -1,5 +1,14 @@
1
1
  'use strict';
2
- var parent = require('../../stable/array/from-async');
3
- require('../../modules/esnext.array.from-async');
2
+ require('../../modules/es.object.to-string');
3
+ require('../../modules/es.promise.constructor');
4
+ require('../../modules/es.promise.catch');
5
+ require('../../modules/es.promise.finally');
6
+ require('../../modules/es.promise.resolve');
7
+ require('../../modules/es.array.iterator');
8
+ require('../../modules/es.array.from-async');
9
+ require('../../modules/es.string.iterator');
10
+ require('../../modules/web.dom-collections.iterator');
4
11
 
5
- module.exports = parent;
12
+ var getBuiltInStaticMethod = require('../../internals/get-built-in-static-method');
13
+
14
+ module.exports = getBuiltInStaticMethod('Array', 'fromAsync');
@@ -1,4 +1,10 @@
1
1
  'use strict';
2
- var parent = require('../../stable/array/from');
2
+ require('../../modules/es.object.to-string');
3
+ require('../../modules/es.array.iterator');
4
+ require('../../modules/es.array.from');
5
+ require('../../modules/es.string.iterator');
6
+ require('../../modules/web.dom-collections.iterator');
3
7
 
4
- module.exports = parent;
8
+ var getBuiltInStaticMethod = require('../../internals/get-built-in-static-method');
9
+
10
+ module.exports = getBuiltInStaticMethod('Array', 'from');
@@ -1,4 +1,6 @@
1
1
  'use strict';
2
- var parent = require('../../stable/array/includes');
2
+ require('../../modules/es.array.includes');
3
3
 
4
- module.exports = parent;
4
+ var entryUnbind = require('../../internals/entry-unbind');
5
+
6
+ module.exports = entryUnbind('Array', 'includes');
@@ -1,4 +1,6 @@
1
1
  'use strict';
2
- var parent = require('../../stable/array/index-of');
2
+ require('../../modules/es.array.index-of');
3
3
 
4
- module.exports = parent;
4
+ var entryUnbind = require('../../internals/entry-unbind');
5
+
6
+ module.exports = entryUnbind('Array', 'indexOf');
@@ -1,16 +1,50 @@
1
1
  'use strict';
2
- var parent = require('../../stable/array');
3
- require('../../modules/esnext.array.from-async');
4
- require('../../modules/esnext.array.group');
5
- require('../../modules/esnext.array.group-to-map');
6
- // TODO: Remove from `core-js@4`
7
- require('../../modules/esnext.array.find-last');
8
- require('../../modules/esnext.array.find-last-index');
9
- require('../../modules/esnext.array.group-by');
10
- require('../../modules/esnext.array.group-by-to-map');
11
- require('../../modules/esnext.array.to-reversed');
12
- require('../../modules/esnext.array.to-sorted');
13
- require('../../modules/esnext.array.to-spliced');
14
- require('../../modules/esnext.array.with');
2
+ require('../../modules/es.object.to-string');
3
+ require('../../modules/es.promise.constructor');
4
+ require('../../modules/es.promise.catch');
5
+ require('../../modules/es.promise.finally');
6
+ require('../../modules/es.promise.resolve');
7
+ require('../../modules/es.array.iterator');
8
+ require('../../modules/es.array.from-async');
9
+ require('../../modules/es.array.at');
10
+ require('../../modules/es.array.concat');
11
+ require('../../modules/es.array.copy-within');
12
+ require('../../modules/es.array.entries');
13
+ require('../../modules/es.array.fill');
14
+ require('../../modules/es.array.filter');
15
+ require('../../modules/es.array.find');
16
+ require('../../modules/es.array.find-index');
17
+ require('../../modules/es.array.find-last');
18
+ require('../../modules/es.array.find-last-index');
19
+ require('../../modules/es.array.flat');
20
+ require('../../modules/es.array.flat-map');
21
+ require('../../modules/es.array.from');
22
+ require('../../modules/es.array.includes');
23
+ require('../../modules/es.array.index-of');
24
+ require('../../modules/es.array.join');
25
+ require('../../modules/es.array.keys');
26
+ require('../../modules/es.array.last-index-of');
27
+ require('../../modules/es.array.map');
28
+ require('../../modules/es.array.of');
29
+ require('../../modules/es.array.push');
30
+ require('../../modules/es.array.reduce');
31
+ require('../../modules/es.array.reduce-right');
32
+ require('../../modules/es.array.reverse');
33
+ require('../../modules/es.array.slice');
34
+ require('../../modules/es.array.sort');
35
+ require('../../modules/es.array.species');
36
+ require('../../modules/es.array.splice');
37
+ require('../../modules/es.array.to-reversed');
38
+ require('../../modules/es.array.to-sorted');
39
+ require('../../modules/es.array.to-spliced');
40
+ require('../../modules/es.array.unscopables.flat');
41
+ require('../../modules/es.array.unscopables.flat-map');
42
+ require('../../modules/es.array.unshift');
43
+ require('../../modules/es.array.values');
44
+ require('../../modules/es.array.with');
45
+ require('../../modules/es.string.iterator');
46
+ require('../../modules/web.dom-collections.iterator');
15
47
 
16
- module.exports = parent;
48
+ var path = require('../../internals/path');
49
+
50
+ module.exports = path.Array;
@@ -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
+ };