core-js-pure 3.15.2 → 3.16.3

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 (585) hide show
  1. package/README.md +1 -1
  2. package/es/aggregate-error.js +1 -1
  3. package/es/array/entries.js +1 -0
  4. package/es/array/index.js +2 -1
  5. package/es/array/iterator.js +1 -0
  6. package/es/array/keys.js +1 -0
  7. package/es/array/values.js +1 -0
  8. package/es/array/virtual/entries.js +1 -0
  9. package/es/array/virtual/index.js +1 -0
  10. package/es/array/virtual/iterator.js +1 -0
  11. package/es/array/virtual/keys.js +1 -0
  12. package/es/array/virtual/values.js +1 -0
  13. package/es/escape.js +2 -2
  14. package/es/get-iterator-method.js +5 -0
  15. package/es/get-iterator.js +5 -0
  16. package/es/is-iterable.js +5 -0
  17. package/es/map/index.js +1 -1
  18. package/es/promise/all-settled.js +2 -1
  19. package/es/promise/any.js +2 -1
  20. package/es/promise/finally.js +1 -0
  21. package/es/promise/index.js +1 -1
  22. package/es/reflect/index.js +1 -0
  23. package/es/reflect/to-string-tag.js +1 -0
  24. package/es/regexp/constructor.js +3 -0
  25. package/es/regexp/match.js +1 -0
  26. package/es/regexp/replace.js +1 -0
  27. package/es/regexp/search.js +1 -0
  28. package/es/regexp/split.js +1 -0
  29. package/es/set/index.js +2 -2
  30. package/es/string/index.js +1 -0
  31. package/es/string/iterator.js +1 -0
  32. package/es/string/match-all.js +2 -0
  33. package/es/string/replace-all.js +2 -0
  34. package/es/string/virtual/index.js +2 -0
  35. package/es/string/virtual/iterator.js +1 -0
  36. package/es/string/virtual/match-all.js +2 -0
  37. package/es/string/virtual/replace-all.js +2 -0
  38. package/es/symbol/is-concat-spreadable.js +1 -1
  39. package/es/symbol/iterator.js +3 -2
  40. package/es/symbol/match-all.js +2 -0
  41. package/es/symbol/match.js +1 -0
  42. package/es/symbol/replace.js +1 -0
  43. package/es/symbol/search.js +1 -0
  44. package/es/symbol/split.js +1 -0
  45. package/es/symbol/to-primitive.js +1 -0
  46. package/es/symbol/to-string-tag.js +2 -2
  47. package/es/typed-array/entries.js +1 -0
  48. package/es/typed-array/iterator.js +1 -0
  49. package/es/typed-array/keys.js +1 -0
  50. package/es/typed-array/methods.js +2 -1
  51. package/es/typed-array/values.js +1 -0
  52. package/es/unescape.js +2 -2
  53. package/es/weak-map/index.js +1 -1
  54. package/es/weak-set/index.js +1 -1
  55. package/features/array/concat.js +1 -1
  56. package/features/array/copy-within.js +1 -1
  57. package/features/array/entries.js +1 -1
  58. package/features/array/every.js +1 -1
  59. package/features/array/fill.js +1 -1
  60. package/features/array/filter-out.js +1 -0
  61. package/features/array/filter-reject.js +4 -0
  62. package/features/array/filter.js +1 -1
  63. package/features/array/find-index.js +1 -1
  64. package/features/array/find.js +1 -1
  65. package/features/array/flat-map.js +1 -1
  66. package/features/array/flat.js +1 -1
  67. package/features/array/for-each.js +1 -1
  68. package/features/array/from.js +1 -1
  69. package/features/array/group-by.js +4 -0
  70. package/features/array/includes.js +1 -1
  71. package/features/array/index-of.js +1 -1
  72. package/features/array/index.js +4 -1
  73. package/features/array/is-array.js +1 -1
  74. package/features/array/iterator.js +1 -1
  75. package/features/array/join.js +1 -1
  76. package/features/array/keys.js +1 -1
  77. package/features/array/last-index-of.js +1 -1
  78. package/features/array/map.js +1 -1
  79. package/features/array/of.js +1 -1
  80. package/features/array/reduce-right.js +1 -1
  81. package/features/array/reduce.js +1 -1
  82. package/features/array/reverse.js +1 -1
  83. package/features/array/slice.js +1 -1
  84. package/features/array/some.js +1 -1
  85. package/features/array/sort.js +1 -1
  86. package/features/array/splice.js +1 -1
  87. package/features/array/values.js +1 -1
  88. package/features/array/virtual/concat.js +1 -1
  89. package/features/array/virtual/copy-within.js +1 -1
  90. package/features/array/virtual/entries.js +1 -1
  91. package/features/array/virtual/every.js +1 -1
  92. package/features/array/virtual/fill.js +1 -1
  93. package/features/array/virtual/filter-out.js +1 -0
  94. package/features/array/virtual/filter-reject.js +4 -0
  95. package/features/array/virtual/filter.js +1 -1
  96. package/features/array/virtual/find-index.js +1 -1
  97. package/features/array/virtual/find.js +1 -1
  98. package/features/array/virtual/flat-map.js +1 -1
  99. package/features/array/virtual/flat.js +1 -1
  100. package/features/array/virtual/for-each.js +1 -1
  101. package/features/array/virtual/group-by.js +4 -0
  102. package/features/array/virtual/includes.js +1 -1
  103. package/features/array/virtual/index-of.js +1 -1
  104. package/features/array/virtual/index.js +4 -1
  105. package/features/array/virtual/iterator.js +1 -1
  106. package/features/array/virtual/join.js +1 -1
  107. package/features/array/virtual/keys.js +1 -1
  108. package/features/array/virtual/last-index-of.js +1 -1
  109. package/features/array/virtual/map.js +1 -1
  110. package/features/array/virtual/reduce-right.js +1 -1
  111. package/features/array/virtual/reduce.js +1 -1
  112. package/features/array/virtual/reverse.js +1 -1
  113. package/features/array/virtual/slice.js +1 -1
  114. package/features/array/virtual/some.js +1 -1
  115. package/features/array/virtual/sort.js +1 -1
  116. package/features/array/virtual/splice.js +1 -1
  117. package/features/array/virtual/values.js +1 -1
  118. package/features/array-buffer/constructor.js +1 -1
  119. package/features/array-buffer/index.js +1 -1
  120. package/features/array-buffer/is-view.js +1 -1
  121. package/features/array-buffer/slice.js +1 -1
  122. package/features/async-iterator/as-indexed-pairs.js +0 -2
  123. package/features/async-iterator/drop.js +0 -2
  124. package/features/async-iterator/every.js +0 -2
  125. package/features/async-iterator/filter.js +0 -2
  126. package/features/async-iterator/find.js +0 -2
  127. package/features/async-iterator/flat-map.js +0 -2
  128. package/features/async-iterator/for-each.js +0 -2
  129. package/features/async-iterator/from.js +1 -0
  130. package/features/async-iterator/index.js +1 -0
  131. package/features/async-iterator/map.js +0 -2
  132. package/features/async-iterator/reduce.js +0 -2
  133. package/features/async-iterator/some.js +0 -2
  134. package/features/async-iterator/take.js +0 -2
  135. package/features/async-iterator/to-array.js +0 -2
  136. package/features/data-view/index.js +1 -1
  137. package/features/date/index.js +1 -1
  138. package/features/date/now.js +1 -1
  139. package/features/date/to-iso-string.js +1 -1
  140. package/features/date/to-json.js +1 -1
  141. package/features/date/to-primitive.js +1 -1
  142. package/features/date/to-string.js +1 -1
  143. package/features/function/bind.js +1 -1
  144. package/features/function/has-instance.js +1 -1
  145. package/features/function/index.js +1 -1
  146. package/features/function/name.js +1 -1
  147. package/features/function/virtual/bind.js +1 -1
  148. package/features/function/virtual/index.js +1 -1
  149. package/features/get-iterator-method.js +2 -4
  150. package/features/get-iterator.js +2 -4
  151. package/features/global-this.js +1 -1
  152. package/features/index.js +4 -0
  153. package/features/instance/bind.js +1 -1
  154. package/features/instance/code-point-at.js +1 -1
  155. package/features/instance/concat.js +1 -1
  156. package/features/instance/copy-within.js +1 -1
  157. package/features/instance/ends-with.js +1 -1
  158. package/features/instance/every.js +1 -1
  159. package/features/instance/fill.js +1 -1
  160. package/features/instance/filter-out.js +1 -0
  161. package/features/instance/filter-reject.js +8 -0
  162. package/features/instance/filter.js +1 -1
  163. package/features/instance/find-index.js +1 -1
  164. package/features/instance/find.js +1 -1
  165. package/features/instance/flags.js +1 -1
  166. package/features/instance/flat-map.js +1 -1
  167. package/features/instance/flat.js +1 -1
  168. package/features/instance/group-by.js +8 -0
  169. package/features/instance/includes.js +1 -1
  170. package/features/instance/index-of.js +1 -1
  171. package/features/instance/last-index-of.js +1 -1
  172. package/features/instance/map.js +1 -1
  173. package/features/instance/match-all.js +1 -1
  174. package/features/instance/pad-end.js +1 -1
  175. package/features/instance/pad-start.js +1 -1
  176. package/features/instance/reduce-right.js +1 -1
  177. package/features/instance/reduce.js +1 -1
  178. package/features/instance/repeat.js +1 -1
  179. package/features/instance/reverse.js +1 -1
  180. package/features/instance/slice.js +1 -1
  181. package/features/instance/some.js +1 -1
  182. package/features/instance/sort.js +1 -1
  183. package/features/instance/splice.js +1 -1
  184. package/features/instance/starts-with.js +1 -1
  185. package/features/instance/trim-end.js +1 -1
  186. package/features/instance/trim-left.js +1 -1
  187. package/features/instance/trim-right.js +1 -1
  188. package/features/instance/trim-start.js +1 -1
  189. package/features/instance/trim.js +1 -1
  190. package/features/is-iterable.js +2 -4
  191. package/features/iterator/as-indexed-pairs.js +0 -2
  192. package/features/iterator/drop.js +0 -2
  193. package/features/iterator/every.js +0 -2
  194. package/features/iterator/filter.js +0 -2
  195. package/features/iterator/find.js +0 -2
  196. package/features/iterator/flat-map.js +0 -2
  197. package/features/iterator/for-each.js +0 -2
  198. package/features/iterator/from.js +1 -0
  199. package/features/iterator/index.js +1 -0
  200. package/features/iterator/map.js +0 -2
  201. package/features/iterator/reduce.js +0 -2
  202. package/features/iterator/some.js +0 -2
  203. package/features/iterator/take.js +0 -2
  204. package/features/iterator/to-array.js +0 -2
  205. package/features/json/index.js +1 -1
  206. package/features/json/stringify.js +1 -1
  207. package/features/json/to-string-tag.js +1 -1
  208. package/features/map/from.js +1 -0
  209. package/features/map/index.js +1 -1
  210. package/features/map/of.js +1 -2
  211. package/features/math/acosh.js +1 -1
  212. package/features/math/asinh.js +1 -1
  213. package/features/math/atanh.js +1 -1
  214. package/features/math/cbrt.js +1 -1
  215. package/features/math/clz32.js +1 -1
  216. package/features/math/cosh.js +1 -1
  217. package/features/math/expm1.js +1 -1
  218. package/features/math/fround.js +1 -1
  219. package/features/math/hypot.js +1 -1
  220. package/features/math/imul.js +1 -1
  221. package/features/math/index.js +1 -1
  222. package/features/math/log10.js +1 -1
  223. package/features/math/log1p.js +1 -1
  224. package/features/math/log2.js +1 -1
  225. package/features/math/sign.js +1 -1
  226. package/features/math/sinh.js +1 -1
  227. package/features/math/tanh.js +1 -1
  228. package/features/math/to-string-tag.js +1 -1
  229. package/features/math/trunc.js +1 -1
  230. package/features/number/constructor.js +1 -1
  231. package/features/number/epsilon.js +1 -1
  232. package/features/number/index.js +1 -1
  233. package/features/number/is-finite.js +1 -1
  234. package/features/number/is-integer.js +1 -1
  235. package/features/number/is-nan.js +1 -1
  236. package/features/number/is-safe-integer.js +1 -1
  237. package/features/number/max-safe-integer.js +1 -1
  238. package/features/number/min-safe-integer.js +1 -1
  239. package/features/number/parse-float.js +1 -1
  240. package/features/number/parse-int.js +1 -1
  241. package/features/number/range.js +1 -0
  242. package/features/number/to-fixed.js +1 -1
  243. package/features/number/to-precision.js +1 -1
  244. package/features/number/virtual/index.js +1 -1
  245. package/features/number/virtual/to-fixed.js +1 -1
  246. package/features/number/virtual/to-precision.js +1 -1
  247. package/features/object/assign.js +1 -1
  248. package/features/object/create.js +1 -1
  249. package/features/object/define-getter.js +1 -1
  250. package/features/object/define-properties.js +1 -1
  251. package/features/object/define-property.js +1 -1
  252. package/features/object/define-setter.js +1 -1
  253. package/features/object/entries.js +1 -1
  254. package/features/object/freeze.js +1 -1
  255. package/features/object/from-entries.js +1 -1
  256. package/features/object/get-own-property-descriptor.js +1 -1
  257. package/features/object/get-own-property-descriptors.js +1 -1
  258. package/features/object/get-own-property-names.js +1 -1
  259. package/features/object/get-own-property-symbols.js +1 -1
  260. package/features/object/get-prototype-of.js +1 -1
  261. package/features/object/index.js +1 -1
  262. package/features/object/is-extensible.js +1 -1
  263. package/features/object/is-frozen.js +1 -1
  264. package/features/object/is-sealed.js +1 -1
  265. package/features/object/is.js +1 -1
  266. package/features/object/keys.js +1 -1
  267. package/features/object/lookup-getter.js +1 -1
  268. package/features/object/lookup-setter.js +1 -1
  269. package/features/object/prevent-extensions.js +1 -1
  270. package/features/object/seal.js +1 -1
  271. package/features/object/set-prototype-of.js +1 -1
  272. package/features/object/to-string.js +1 -1
  273. package/features/object/values.js +1 -1
  274. package/features/parse-float.js +1 -1
  275. package/features/parse-int.js +1 -1
  276. package/features/promise/all-settled.js +1 -1
  277. package/features/promise/any.js +1 -1
  278. package/features/promise/finally.js +1 -1
  279. package/features/promise/index.js +1 -1
  280. package/features/reflect/apply.js +1 -1
  281. package/features/reflect/construct.js +1 -1
  282. package/features/reflect/define-property.js +1 -1
  283. package/features/reflect/delete-property.js +1 -1
  284. package/features/reflect/get-own-property-descriptor.js +1 -1
  285. package/features/reflect/get-prototype-of.js +1 -1
  286. package/features/reflect/get.js +1 -1
  287. package/features/reflect/has.js +1 -1
  288. package/features/reflect/index.js +1 -1
  289. package/features/reflect/is-extensible.js +1 -1
  290. package/features/reflect/own-keys.js +1 -1
  291. package/features/reflect/prevent-extensions.js +1 -1
  292. package/features/reflect/set-prototype-of.js +1 -1
  293. package/features/reflect/set.js +1 -1
  294. package/features/regexp/constructor.js +1 -1
  295. package/features/regexp/flags.js +1 -1
  296. package/features/regexp/index.js +1 -1
  297. package/features/regexp/match.js +1 -1
  298. package/features/regexp/replace.js +1 -1
  299. package/features/regexp/search.js +1 -1
  300. package/features/regexp/split.js +1 -1
  301. package/features/regexp/sticky.js +1 -1
  302. package/features/regexp/test.js +1 -1
  303. package/features/regexp/to-string.js +1 -1
  304. package/features/set/difference.js +1 -0
  305. package/features/set/from.js +1 -0
  306. package/features/set/index.js +1 -1
  307. package/features/set/intersection.js +3 -0
  308. package/features/set/is-disjoint-from.js +3 -0
  309. package/features/set/is-subset-of.js +1 -0
  310. package/features/set/is-superset-of.js +3 -0
  311. package/features/set/of.js +1 -2
  312. package/features/set/symmetric-difference.js +1 -0
  313. package/features/set/union.js +1 -0
  314. package/features/string/anchor.js +1 -1
  315. package/features/string/big.js +1 -1
  316. package/features/string/blink.js +1 -1
  317. package/features/string/bold.js +1 -1
  318. package/features/string/code-point-at.js +1 -1
  319. package/features/string/code-points.js +1 -0
  320. package/features/string/ends-with.js +1 -1
  321. package/features/string/fixed.js +1 -1
  322. package/features/string/fontcolor.js +1 -1
  323. package/features/string/fontsize.js +1 -1
  324. package/features/string/from-code-point.js +1 -1
  325. package/features/string/includes.js +1 -1
  326. package/features/string/index.js +1 -1
  327. package/features/string/italics.js +1 -1
  328. package/features/string/iterator.js +1 -1
  329. package/features/string/link.js +1 -1
  330. package/features/string/match-all.js +1 -1
  331. package/features/string/match.js +1 -1
  332. package/features/string/pad-end.js +1 -1
  333. package/features/string/pad-start.js +1 -1
  334. package/features/string/raw.js +1 -1
  335. package/features/string/repeat.js +1 -1
  336. package/features/string/replace-all.js +1 -1
  337. package/features/string/replace.js +1 -1
  338. package/features/string/search.js +1 -1
  339. package/features/string/small.js +1 -1
  340. package/features/string/split.js +1 -1
  341. package/features/string/starts-with.js +1 -1
  342. package/features/string/strike.js +1 -1
  343. package/features/string/sub.js +1 -1
  344. package/features/string/sup.js +1 -1
  345. package/features/string/trim-end.js +1 -1
  346. package/features/string/trim-left.js +1 -1
  347. package/features/string/trim-right.js +1 -1
  348. package/features/string/trim-start.js +1 -1
  349. package/features/string/trim.js +1 -1
  350. package/features/string/virtual/anchor.js +1 -1
  351. package/features/string/virtual/big.js +1 -1
  352. package/features/string/virtual/blink.js +1 -1
  353. package/features/string/virtual/bold.js +1 -1
  354. package/features/string/virtual/code-point-at.js +1 -1
  355. package/features/string/virtual/code-points.js +1 -0
  356. package/features/string/virtual/ends-with.js +1 -1
  357. package/features/string/virtual/fixed.js +1 -1
  358. package/features/string/virtual/fontcolor.js +1 -1
  359. package/features/string/virtual/fontsize.js +1 -1
  360. package/features/string/virtual/includes.js +1 -1
  361. package/features/string/virtual/index.js +1 -1
  362. package/features/string/virtual/italics.js +1 -1
  363. package/features/string/virtual/iterator.js +1 -1
  364. package/features/string/virtual/link.js +1 -1
  365. package/features/string/virtual/match-all.js +1 -1
  366. package/features/string/virtual/pad-end.js +1 -1
  367. package/features/string/virtual/pad-start.js +1 -1
  368. package/features/string/virtual/repeat.js +1 -1
  369. package/features/string/virtual/replace-all.js +1 -1
  370. package/features/string/virtual/small.js +1 -1
  371. package/features/string/virtual/starts-with.js +1 -1
  372. package/features/string/virtual/strike.js +1 -1
  373. package/features/string/virtual/sub.js +1 -1
  374. package/features/string/virtual/sup.js +1 -1
  375. package/features/string/virtual/trim-end.js +1 -1
  376. package/features/string/virtual/trim-left.js +1 -1
  377. package/features/string/virtual/trim-right.js +1 -1
  378. package/features/string/virtual/trim-start.js +1 -1
  379. package/features/string/virtual/trim.js +1 -1
  380. package/features/symbol/async-iterator.js +1 -1
  381. package/features/symbol/for.js +1 -1
  382. package/features/symbol/has-instance.js +1 -1
  383. package/features/symbol/index.js +1 -1
  384. package/features/symbol/is-concat-spreadable.js +1 -1
  385. package/features/symbol/iterator.js +1 -1
  386. package/features/symbol/key-for.js +1 -1
  387. package/features/symbol/match-all.js +1 -1
  388. package/features/symbol/match.js +1 -1
  389. package/features/symbol/replace.js +1 -1
  390. package/features/symbol/search.js +1 -1
  391. package/features/symbol/species.js +1 -1
  392. package/features/symbol/split.js +1 -1
  393. package/features/symbol/to-primitive.js +1 -1
  394. package/features/symbol/to-string-tag.js +1 -1
  395. package/features/symbol/unscopables.js +1 -1
  396. package/features/typed-array/copy-within.js +3 -1
  397. package/features/typed-array/entries.js +3 -1
  398. package/features/typed-array/every.js +3 -1
  399. package/features/typed-array/fill.js +3 -1
  400. package/features/typed-array/filter-out.js +1 -0
  401. package/features/typed-array/filter-reject.js +1 -0
  402. package/features/typed-array/filter.js +3 -1
  403. package/features/typed-array/find-index.js +3 -1
  404. package/features/typed-array/find.js +3 -1
  405. package/features/typed-array/float32-array.js +2 -1
  406. package/features/typed-array/float64-array.js +2 -1
  407. package/features/typed-array/for-each.js +3 -1
  408. package/features/typed-array/from.js +3 -1
  409. package/features/typed-array/group-by.js +1 -0
  410. package/features/typed-array/includes.js +3 -1
  411. package/features/typed-array/index-of.js +3 -1
  412. package/features/typed-array/index.js +4 -1
  413. package/features/typed-array/int16-array.js +2 -1
  414. package/features/typed-array/int32-array.js +2 -1
  415. package/features/typed-array/int8-array.js +2 -1
  416. package/features/typed-array/iterator.js +3 -1
  417. package/features/typed-array/join.js +3 -1
  418. package/features/typed-array/keys.js +3 -1
  419. package/features/typed-array/last-index-of.js +3 -1
  420. package/features/typed-array/map.js +3 -1
  421. package/features/typed-array/methods.js +12 -0
  422. package/features/typed-array/of.js +3 -1
  423. package/features/typed-array/reduce-right.js +3 -1
  424. package/features/typed-array/reduce.js +3 -1
  425. package/features/typed-array/reverse.js +3 -1
  426. package/features/typed-array/set.js +3 -1
  427. package/features/typed-array/slice.js +3 -1
  428. package/features/typed-array/some.js +3 -1
  429. package/features/typed-array/sort.js +3 -1
  430. package/features/typed-array/subarray.js +3 -1
  431. package/features/typed-array/to-locale-string.js +3 -1
  432. package/features/typed-array/to-string.js +3 -1
  433. package/features/typed-array/uint16-array.js +2 -1
  434. package/features/typed-array/uint32-array.js +2 -1
  435. package/features/typed-array/uint8-array.js +2 -1
  436. package/features/typed-array/uint8-clamped-array.js +2 -1
  437. package/features/typed-array/values.js +3 -1
  438. package/features/weak-map/from.js +1 -0
  439. package/features/weak-map/index.js +2 -1
  440. package/features/weak-map/of.js +1 -2
  441. package/features/weak-set/from.js +1 -0
  442. package/features/weak-set/index.js +2 -1
  443. package/features/weak-set/of.js +1 -2
  444. package/internals/array-from-constructor-and-list.js +7 -0
  445. package/internals/array-group-by.js +33 -0
  446. package/internals/array-iteration-from-last.js +6 -6
  447. package/internals/array-iteration.js +6 -6
  448. package/internals/array-species-constructor.js +20 -0
  449. package/internals/array-species-create.js +2 -15
  450. package/internals/async-iterator-create-proxy.js +2 -1
  451. package/internals/collection.js +1 -1
  452. package/internals/create-html.js +3 -2
  453. package/internals/create-property.js +2 -2
  454. package/internals/date-to-primitive.js +5 -4
  455. package/internals/engine-is-ios-pebble.js +4 -0
  456. package/internals/engine-is-ios.js +1 -1
  457. package/internals/engine-v8-version.js +2 -1
  458. package/internals/export.js +3 -3
  459. package/internals/get-map-iterator.js +1 -5
  460. package/internals/get-set-iterator.js +1 -5
  461. package/internals/internal-metadata.js +32 -2
  462. package/internals/is-data-descriptor.js +5 -0
  463. package/internals/is-symbol.js +9 -0
  464. package/internals/microtask.js +2 -1
  465. package/internals/number-parse-float.js +2 -1
  466. package/internals/number-parse-int.js +2 -1
  467. package/internals/object-create.js +7 -3
  468. package/internals/object-define-property.js +2 -2
  469. package/internals/object-get-own-property-descriptor.js +2 -2
  470. package/internals/ordinary-to-primitive.js +11 -0
  471. package/internals/regexp-unsupported-ncg.js +5 -2
  472. package/internals/set-global.js +2 -2
  473. package/internals/shared.js +1 -1
  474. package/internals/string-multibyte.js +3 -2
  475. package/internals/string-pad.js +3 -2
  476. package/internals/string-repeat.js +2 -1
  477. package/internals/string-trim.js +2 -1
  478. package/internals/task.js +9 -4
  479. package/internals/to-primitive.js +17 -9
  480. package/internals/to-property-key.js +9 -0
  481. package/internals/to-string.js +6 -0
  482. package/internals/typed-array-species-constructor.js +11 -0
  483. package/modules/es.aggregate-error.js +2 -1
  484. package/modules/es.array.sort.js +2 -1
  485. package/modules/es.date.get-year.js +6 -1
  486. package/modules/es.date.to-json.js +1 -1
  487. package/modules/es.escape.js +2 -1
  488. package/modules/es.object.lookup-getter.js +2 -2
  489. package/modules/es.object.lookup-setter.js +2 -2
  490. package/modules/es.reflect.define-property.js +2 -2
  491. package/modules/es.reflect.get.js +4 -5
  492. package/modules/es.reflect.set.js +8 -6
  493. package/modules/es.string.ends-with.js +3 -2
  494. package/modules/es.string.includes.js +3 -2
  495. package/modules/es.string.iterator.js +2 -1
  496. package/modules/es.string.match-all.js +6 -5
  497. package/modules/es.string.raw.js +3 -2
  498. package/modules/es.string.replace-all.js +7 -6
  499. package/modules/es.string.starts-with.js +3 -2
  500. package/modules/es.string.substr.js +2 -1
  501. package/modules/es.symbol.js +8 -13
  502. package/modules/es.unescape.js +2 -1
  503. package/modules/es.weak-map.js +1 -1
  504. package/modules/esnext.array.filter-out.js +3 -2
  505. package/modules/esnext.array.filter-reject.js +14 -0
  506. package/modules/esnext.array.group-by.js +16 -0
  507. package/modules/esnext.async-iterator.as-indexed-pairs.js +1 -1
  508. package/modules/esnext.async-iterator.drop.js +1 -1
  509. package/modules/esnext.async-iterator.filter.js +1 -1
  510. package/modules/esnext.async-iterator.flat-map.js +1 -1
  511. package/modules/esnext.async-iterator.from.js +6 -2
  512. package/modules/esnext.async-iterator.map.js +1 -1
  513. package/modules/esnext.async-iterator.take.js +1 -1
  514. package/modules/esnext.map.merge.js +2 -1
  515. package/modules/esnext.string.at-alternative.js +3 -2
  516. package/modules/esnext.string.code-points.js +2 -1
  517. package/modules/esnext.typed-array.filter-out.js +1 -1
  518. package/modules/esnext.typed-array.filter-reject.js +1 -0
  519. package/modules/esnext.typed-array.group-by.js +1 -0
  520. package/modules/web.url-search-params.js +56 -36
  521. package/modules/web.url.js +14 -13
  522. package/package.json +3 -4
  523. package/postinstall.js +4 -3
  524. package/proposals/array-filtering.js +4 -0
  525. package/proposals/array-grouping.js +3 -0
  526. package/stable/aggregate-error.js +1 -0
  527. package/stable/dom-collections/index.js +1 -0
  528. package/stable/dom-collections/iterator.js +1 -0
  529. package/stable/get-iterator-method.js +4 -0
  530. package/stable/get-iterator.js +4 -0
  531. package/stable/is-iterable.js +4 -0
  532. package/stable/map/index.js +1 -0
  533. package/stable/object/from-entries.js +1 -0
  534. package/stable/object/index.js +1 -0
  535. package/stable/promise/all-settled.js +1 -0
  536. package/stable/promise/any.js +1 -0
  537. package/stable/promise/index.js +1 -0
  538. package/stable/set/index.js +1 -0
  539. package/stable/symbol/index.js +1 -0
  540. package/stable/symbol/iterator.js +1 -0
  541. package/stable/typed-array/copy-within.js +3 -1
  542. package/stable/typed-array/entries.js +3 -1
  543. package/stable/typed-array/every.js +3 -1
  544. package/stable/typed-array/fill.js +3 -1
  545. package/stable/typed-array/filter.js +3 -1
  546. package/stable/typed-array/find-index.js +3 -1
  547. package/stable/typed-array/find.js +3 -1
  548. package/stable/typed-array/float32-array.js +1 -0
  549. package/stable/typed-array/float64-array.js +1 -0
  550. package/stable/typed-array/for-each.js +3 -1
  551. package/stable/typed-array/from.js +3 -1
  552. package/stable/typed-array/includes.js +3 -1
  553. package/stable/typed-array/index-of.js +3 -1
  554. package/stable/typed-array/int16-array.js +1 -0
  555. package/stable/typed-array/int32-array.js +1 -0
  556. package/stable/typed-array/int8-array.js +1 -0
  557. package/stable/typed-array/iterator.js +3 -1
  558. package/stable/typed-array/join.js +3 -1
  559. package/stable/typed-array/keys.js +3 -1
  560. package/stable/typed-array/last-index-of.js +3 -1
  561. package/stable/typed-array/map.js +3 -1
  562. package/stable/typed-array/methods.js +3 -0
  563. package/stable/typed-array/of.js +3 -1
  564. package/stable/typed-array/reduce-right.js +3 -1
  565. package/stable/typed-array/reduce.js +3 -1
  566. package/stable/typed-array/reverse.js +3 -1
  567. package/stable/typed-array/set.js +3 -1
  568. package/stable/typed-array/slice.js +3 -1
  569. package/stable/typed-array/some.js +3 -1
  570. package/stable/typed-array/sort.js +3 -1
  571. package/stable/typed-array/subarray.js +3 -1
  572. package/stable/typed-array/to-locale-string.js +3 -1
  573. package/stable/typed-array/to-string.js +3 -1
  574. package/stable/typed-array/uint16-array.js +1 -0
  575. package/stable/typed-array/uint32-array.js +1 -0
  576. package/stable/typed-array/uint8-array.js +1 -0
  577. package/stable/typed-array/uint8-clamped-array.js +1 -0
  578. package/stable/typed-array/values.js +3 -1
  579. package/stable/url-search-params/index.js +1 -0
  580. package/stable/weak-map/index.js +1 -0
  581. package/stable/weak-set/index.js +1 -0
  582. package/stage/1.js +1 -0
  583. package/stage/2.js +0 -1
  584. package/stage/3.js +1 -0
  585. package/es/array/virtual/filter-out.js +0 -4
package/README.md CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  ## Raising funds
12
12
 
13
- `core-js` isn't backed by a company, so the future of this project depends on you. Become a sponsor or a backer [**on Open Collective**](https://opencollective.com/core-js) or [**on Patreon**](https://www.patreon.com/zloirock) if you are interested in `core-js`.
13
+ `core-js` isn't backed by a company, so the future of this project depends on you. Become a sponsor or a backer if you are interested in `core-js`: [**Open Collective**](https://opencollective.com/core-js), [**Patreon**](https://patreon.com/zloirock), [**PayPal**](https://paypal.me/zloirock), **Bitcoin ( bc1qlea7544qtsmj2rayg0lthvza9fau63ux0fstcz )**.
14
14
 
15
15
  ---
16
16
 
@@ -1,6 +1,6 @@
1
1
  require('../modules/es.aggregate-error');
2
+ require('../modules/es.array.iterator');
2
3
  require('../modules/es.string.iterator');
3
- require('../modules/web.dom-collections.iterator');
4
4
  var path = require('../internals/path');
5
5
 
6
6
  module.exports = path.AggregateError;
@@ -1,4 +1,5 @@
1
1
  require('../../modules/es.array.iterator');
2
+ require('../../modules/es.object.to-string');
2
3
  var entryUnbind = require('../../internals/entry-unbind');
3
4
 
4
5
  module.exports = entryUnbind('Array', 'entries');
package/es/array/index.js CHANGED
@@ -1,4 +1,3 @@
1
- require('../../modules/es.string.iterator');
2
1
  require('../../modules/es.array.from');
3
2
  require('../../modules/es.array.is-array');
4
3
  require('../../modules/es.array.of');
@@ -28,6 +27,8 @@ require('../../modules/es.array.species');
28
27
  require('../../modules/es.array.splice');
29
28
  require('../../modules/es.array.unscopables.flat');
30
29
  require('../../modules/es.array.unscopables.flat-map');
30
+ require('../../modules/es.object.to-string');
31
+ require('../../modules/es.string.iterator');
31
32
  var path = require('../../internals/path');
32
33
 
33
34
  module.exports = path.Array;
@@ -1,4 +1,5 @@
1
1
  require('../../modules/es.array.iterator');
2
+ require('../../modules/es.object.to-string');
2
3
  var entryUnbind = require('../../internals/entry-unbind');
3
4
 
4
5
  module.exports = entryUnbind('Array', 'values');
package/es/array/keys.js CHANGED
@@ -1,4 +1,5 @@
1
1
  require('../../modules/es.array.iterator');
2
+ require('../../modules/es.object.to-string');
2
3
  var entryUnbind = require('../../internals/entry-unbind');
3
4
 
4
5
  module.exports = entryUnbind('Array', 'keys');
@@ -1,4 +1,5 @@
1
1
  require('../../modules/es.array.iterator');
2
+ require('../../modules/es.object.to-string');
2
3
  var entryUnbind = require('../../internals/entry-unbind');
3
4
 
4
5
  module.exports = entryUnbind('Array', 'values');
@@ -1,4 +1,5 @@
1
1
  require('../../../modules/es.array.iterator');
2
+ require('../../../modules/es.object.to-string');
2
3
  var entryVirtual = require('../../../internals/entry-virtual');
3
4
 
4
5
  module.exports = entryVirtual('Array').entries;
@@ -24,6 +24,7 @@ require('../../../modules/es.array.species');
24
24
  require('../../../modules/es.array.splice');
25
25
  require('../../../modules/es.array.unscopables.flat');
26
26
  require('../../../modules/es.array.unscopables.flat-map');
27
+ require('../../../modules/es.object.to-string');
27
28
  var entryVirtual = require('../../../internals/entry-virtual');
28
29
 
29
30
  module.exports = entryVirtual('Array');
@@ -1,4 +1,5 @@
1
1
  require('../../../modules/es.array.iterator');
2
+ require('../../../modules/es.object.to-string');
2
3
  var entryVirtual = require('../../../internals/entry-virtual');
3
4
 
4
5
  module.exports = entryVirtual('Array').values;
@@ -1,4 +1,5 @@
1
1
  require('../../../modules/es.array.iterator');
2
+ require('../../../modules/es.object.to-string');
2
3
  var entryVirtual = require('../../../internals/entry-virtual');
3
4
 
4
5
  module.exports = entryVirtual('Array').keys;
@@ -1,4 +1,5 @@
1
1
  require('../../../modules/es.array.iterator');
2
+ require('../../../modules/es.object.to-string');
2
3
  var entryVirtual = require('../../../internals/entry-virtual');
3
4
 
4
5
  module.exports = entryVirtual('Array').values;
package/es/escape.js CHANGED
@@ -1,4 +1,4 @@
1
1
  require('../modules/es.escape');
2
- var global = require('../internals/global');
2
+ var path = require('../internals/path');
3
3
 
4
- module.exports = global.escape;
4
+ module.exports = path.escape;
@@ -0,0 +1,5 @@
1
+ require('../modules/es.array.iterator');
2
+ require('../modules/es.string.iterator');
3
+ var getIteratorMethod = require('../internals/get-iterator-method');
4
+
5
+ module.exports = getIteratorMethod;
@@ -0,0 +1,5 @@
1
+ require('../modules/es.array.iterator');
2
+ require('../modules/es.string.iterator');
3
+ var getIterator = require('../internals/get-iterator');
4
+
5
+ module.exports = getIterator;
@@ -0,0 +1,5 @@
1
+ require('../modules/es.array.iterator');
2
+ require('../modules/es.string.iterator');
3
+ var isIterable = require('../internals/is-iterable');
4
+
5
+ module.exports = isIterable;
package/es/map/index.js CHANGED
@@ -1,7 +1,7 @@
1
+ require('../../modules/es.array.iterator');
1
2
  require('../../modules/es.map');
2
3
  require('../../modules/es.object.to-string');
3
4
  require('../../modules/es.string.iterator');
4
- require('../../modules/web.dom-collections.iterator');
5
5
  var path = require('../../internals/path');
6
6
 
7
7
  module.exports = path.Map;
@@ -1,8 +1,9 @@
1
1
  'use strict';
2
+ require('../../modules/es.array.iterator');
3
+ require('../../modules/es.object.to-string');
2
4
  require('../../modules/es.promise');
3
5
  require('../../modules/es.promise.all-settled');
4
6
  require('../../modules/es.string.iterator');
5
- require('../../modules/web.dom-collections.iterator');
6
7
  var path = require('../../internals/path');
7
8
 
8
9
  var Promise = path.Promise;
package/es/promise/any.js CHANGED
@@ -1,9 +1,10 @@
1
1
  'use strict';
2
2
  require('../../modules/es.aggregate-error');
3
+ require('../../modules/es.array.iterator');
4
+ require('../../modules/es.object.to-string');
3
5
  require('../../modules/es.promise');
4
6
  require('../../modules/es.promise.any');
5
7
  require('../../modules/es.string.iterator');
6
- require('../../modules/web.dom-collections.iterator');
7
8
  var path = require('../../internals/path');
8
9
 
9
10
  var Promise = path.Promise;
@@ -1,3 +1,4 @@
1
+ require('../../modules/es.object.to-string');
1
2
  require('../../modules/es.promise');
2
3
  require('../../modules/es.promise.finally');
3
4
  var entryUnbind = require('../../internals/entry-unbind');
@@ -1,11 +1,11 @@
1
1
  require('../../modules/es.aggregate-error');
2
+ require('../../modules/es.array.iterator');
2
3
  require('../../modules/es.object.to-string');
3
4
  require('../../modules/es.promise');
4
5
  require('../../modules/es.promise.all-settled');
5
6
  require('../../modules/es.promise.any');
6
7
  require('../../modules/es.promise.finally');
7
8
  require('../../modules/es.string.iterator');
8
- require('../../modules/web.dom-collections.iterator');
9
9
  var path = require('../../internals/path');
10
10
 
11
11
  module.exports = path.Promise;
@@ -1,3 +1,4 @@
1
+ require('../../modules/es.object.to-string');
1
2
  require('../../modules/es.reflect.apply');
2
3
  require('../../modules/es.reflect.construct');
3
4
  require('../../modules/es.reflect.define-property');
@@ -1,3 +1,4 @@
1
+ require('../../modules/es.object.to-string');
1
2
  require('../../modules/es.reflect.to-string-tag');
2
3
 
3
4
  module.exports = 'Reflect';
@@ -1,3 +1,6 @@
1
1
  require('../../modules/es.regexp.constructor');
2
+ require('../../modules/es.regexp.dot-all');
3
+ require('../../modules/es.regexp.exec');
4
+ require('../../modules/es.regexp.sticky');
2
5
 
3
6
  module.exports = RegExp;
@@ -1,3 +1,4 @@
1
+ require('../../modules/es.regexp.exec');
1
2
  require('../../modules/es.string.match');
2
3
  var wellKnownSymbol = require('../../internals/well-known-symbol');
3
4
 
@@ -1,3 +1,4 @@
1
+ require('../../modules/es.regexp.exec');
1
2
  require('../../modules/es.string.replace');
2
3
  var wellKnownSymbol = require('../../internals/well-known-symbol');
3
4
 
@@ -1,3 +1,4 @@
1
+ require('../../modules/es.regexp.exec');
1
2
  require('../../modules/es.string.search');
2
3
  var wellKnownSymbol = require('../../internals/well-known-symbol');
3
4
 
@@ -1,3 +1,4 @@
1
+ require('../../modules/es.regexp.exec');
1
2
  require('../../modules/es.string.split');
2
3
  var wellKnownSymbol = require('../../internals/well-known-symbol');
3
4
 
package/es/set/index.js CHANGED
@@ -1,7 +1,7 @@
1
- require('../../modules/es.set');
1
+ require('../../modules/es.array.iterator');
2
2
  require('../../modules/es.object.to-string');
3
+ require('../../modules/es.set');
3
4
  require('../../modules/es.string.iterator');
4
- require('../../modules/web.dom-collections.iterator');
5
5
  var path = require('../../internals/path');
6
6
 
7
7
  module.exports = path.Set;
@@ -1,3 +1,4 @@
1
+ require('../../modules/es.object.to-string');
1
2
  require('../../modules/es.regexp.exec');
2
3
  require('../../modules/es.string.from-code-point');
3
4
  require('../../modules/es.string.raw');
@@ -1,3 +1,4 @@
1
+ require('../../modules/es.object.to-string');
1
2
  require('../../modules/es.string.iterator');
2
3
  var Iterators = require('../../internals/iterators');
3
4
 
@@ -1,3 +1,5 @@
1
+ require('../../modules/es.object.to-string');
2
+ require('../../modules/es.regexp.exec');
1
3
  require('../../modules/es.string.match-all');
2
4
  var entryUnbind = require('../../internals/entry-unbind');
3
5
 
@@ -1,3 +1,5 @@
1
+ require('../../modules/es.regexp.exec');
2
+ require('../../modules/es.string.replace');
1
3
  require('../../modules/es.string.replace-all');
2
4
  var entryUnbind = require('../../internals/entry-unbind');
3
5
 
@@ -1,3 +1,5 @@
1
+ require('../../../modules/es.object.to-string');
2
+ require('../../../modules/es.regexp.exec');
1
3
  require('../../../modules/es.string.code-point-at');
2
4
  require('../../../modules/es.string.ends-with');
3
5
  require('../../../modules/es.string.includes');
@@ -1,3 +1,4 @@
1
+ require('../../../modules/es.object.to-string');
1
2
  require('../../../modules/es.string.iterator');
2
3
  var Iterators = require('../../../internals/iterators');
3
4
 
@@ -1,3 +1,5 @@
1
+ require('../../../modules/es.object.to-string');
2
+ require('../../../modules/es.regexp.exec');
1
3
  require('../../../modules/es.string.match-all');
2
4
  var entryVirtual = require('../../../internals/entry-virtual');
3
5
 
@@ -1,3 +1,5 @@
1
+ require('../../../modules/es.regexp.exec');
2
+ require('../../../modules/es.string.replace');
1
3
  require('../../../modules/es.string.replace-all');
2
4
  var entryVirtual = require('../../../internals/entry-virtual');
3
5
 
@@ -1,5 +1,5 @@
1
- require('../../modules/es.symbol.is-concat-spreadable');
2
1
  require('../../modules/es.array.concat');
2
+ require('../../modules/es.symbol.is-concat-spreadable');
3
3
  var WrappedWellKnownSymbolModule = require('../../internals/well-known-symbol-wrapped');
4
4
 
5
5
  module.exports = WrappedWellKnownSymbolModule.f('isConcatSpreadable');
@@ -1,6 +1,7 @@
1
- require('../../modules/es.symbol.iterator');
1
+ require('../../modules/es.array.iterator');
2
+ require('../../modules/es.object.to-string');
2
3
  require('../../modules/es.string.iterator');
3
- require('../../modules/web.dom-collections.iterator');
4
+ require('../../modules/es.symbol.iterator');
4
5
  var WrappedWellKnownSymbolModule = require('../../internals/well-known-symbol-wrapped');
5
6
 
6
7
  module.exports = WrappedWellKnownSymbolModule.f('iterator');
@@ -1,3 +1,5 @@
1
+ require('../../modules/es.object.to-string');
2
+ require('../../modules/es.regexp.exec');
1
3
  require('../../modules/es.symbol.match-all');
2
4
  require('../../modules/es.string.match-all');
3
5
  var WrappedWellKnownSymbolModule = require('../../internals/well-known-symbol-wrapped');
@@ -1,3 +1,4 @@
1
+ require('../../modules/es.regexp.exec');
1
2
  require('../../modules/es.symbol.match');
2
3
  require('../../modules/es.string.match');
3
4
  var WrappedWellKnownSymbolModule = require('../../internals/well-known-symbol-wrapped');
@@ -1,3 +1,4 @@
1
+ require('../../modules/es.regexp.exec');
1
2
  require('../../modules/es.symbol.replace');
2
3
  require('../../modules/es.string.replace');
3
4
  var WrappedWellKnownSymbolModule = require('../../internals/well-known-symbol-wrapped');
@@ -1,3 +1,4 @@
1
+ require('../../modules/es.regexp.exec');
1
2
  require('../../modules/es.symbol.search');
2
3
  require('../../modules/es.string.search');
3
4
  var WrappedWellKnownSymbolModule = require('../../internals/well-known-symbol-wrapped');
@@ -1,3 +1,4 @@
1
+ require('../../modules/es.regexp.exec');
1
2
  require('../../modules/es.symbol.split');
2
3
  require('../../modules/es.string.split');
3
4
  var WrappedWellKnownSymbolModule = require('../../internals/well-known-symbol-wrapped');
@@ -1,3 +1,4 @@
1
+ require('../../modules/es.date.to-primitive');
1
2
  require('../../modules/es.symbol.to-primitive');
2
3
  var WrappedWellKnownSymbolModule = require('../../internals/well-known-symbol-wrapped');
3
4
 
@@ -1,8 +1,8 @@
1
- require('../../modules/es.symbol.to-string-tag');
2
- require('../../modules/es.object.to-string');
3
1
  require('../../modules/es.json.to-string-tag');
4
2
  require('../../modules/es.math.to-string-tag');
3
+ require('../../modules/es.object.to-string');
5
4
  require('../../modules/es.reflect.to-string-tag');
5
+ require('../../modules/es.symbol.to-string-tag');
6
6
  var WrappedWellKnownSymbolModule = require('../../internals/well-known-symbol-wrapped');
7
7
 
8
8
  module.exports = WrappedWellKnownSymbolModule.f('toStringTag');
@@ -1 +1,2 @@
1
+ require('../../modules/es.object.to-string');
1
2
  require('../../modules/es.typed-array.iterator');
@@ -1 +1,2 @@
1
+ require('../../modules/es.object.to-string');
1
2
  require('../../modules/es.typed-array.iterator');
@@ -1 +1,2 @@
1
+ require('../../modules/es.object.to-string');
1
2
  require('../../modules/es.typed-array.iterator');
@@ -1,3 +1,5 @@
1
+ require('../../modules/es.object.to-string');
2
+ require('../../modules/es.string.iterator');
1
3
  require('../../modules/es.typed-array.from');
2
4
  require('../../modules/es.typed-array.of');
3
5
  require('../../modules/es.typed-array.copy-within');
@@ -23,4 +25,3 @@ require('../../modules/es.typed-array.subarray');
23
25
  require('../../modules/es.typed-array.to-locale-string');
24
26
  require('../../modules/es.typed-array.to-string');
25
27
  require('../../modules/es.typed-array.iterator');
26
- require('../../modules/es.object.to-string');
@@ -1 +1,2 @@
1
+ require('../../modules/es.object.to-string');
1
2
  require('../../modules/es.typed-array.iterator');
package/es/unescape.js CHANGED
@@ -1,4 +1,4 @@
1
1
  require('../modules/es.unescape');
2
- var global = require('../internals/global');
2
+ var path = require('../internals/path');
3
3
 
4
- module.exports = global.unescape;
4
+ module.exports = path.unescape;
@@ -1,6 +1,6 @@
1
+ require('../../modules/es.array.iterator');
1
2
  require('../../modules/es.object.to-string');
2
3
  require('../../modules/es.weak-map');
3
- require('../../modules/web.dom-collections.iterator');
4
4
  var path = require('../../internals/path');
5
5
 
6
6
  module.exports = path.WeakMap;
@@ -1,6 +1,6 @@
1
+ require('../../modules/es.array.iterator');
1
2
  require('../../modules/es.object.to-string');
2
3
  require('../../modules/es.weak-set');
3
- require('../../modules/web.dom-collections.iterator');
4
4
  var path = require('../../internals/path');
5
5
 
6
6
  module.exports = path.WeakSet;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/concat');
1
+ var parent = require('../../stable/array/concat');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/copy-within');
1
+ var parent = require('../../stable/array/copy-within');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/entries');
1
+ var parent = require('../../stable/array/entries');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/every');
1
+ var parent = require('../../stable/array/every');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/fill');
1
+ var parent = require('../../stable/array/fill');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,4 @@
1
+ // TODO: Remove from `core-js@4`
1
2
  require('../../modules/esnext.array.filter-out');
2
3
  var entryUnbind = require('../../internals/entry-unbind');
3
4
 
@@ -0,0 +1,4 @@
1
+ require('../../modules/esnext.array.filter-reject');
2
+ var entryUnbind = require('../../internals/entry-unbind');
3
+
4
+ module.exports = entryUnbind('Array', 'filterReject');
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/filter');
1
+ var parent = require('../../stable/array/filter');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/find-index');
1
+ var parent = require('../../stable/array/find-index');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/find');
1
+ var parent = require('../../stable/array/find');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/flat-map');
1
+ var parent = require('../../stable/array/flat-map');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/flat');
1
+ var parent = require('../../stable/array/flat');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/for-each');
1
+ var parent = require('../../stable/array/for-each');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/from');
1
+ var parent = require('../../stable/array/from');
2
2
 
3
3
  module.exports = parent;
@@ -0,0 +1,4 @@
1
+ require('../../modules/esnext.array.group-by');
2
+ var entryUnbind = require('../../internals/entry-unbind');
3
+
4
+ module.exports = entryUnbind('Array', 'groupBy');
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/includes');
1
+ var parent = require('../../stable/array/includes');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/index-of');
1
+ var parent = require('../../stable/array/index-of');
2
2
 
3
3
  module.exports = parent;
@@ -1,9 +1,12 @@
1
- var parent = require('../../es/array');
1
+ var parent = require('../../stable/array');
2
2
  require('../../modules/es.map');
3
3
  require('../../modules/esnext.array.at');
4
+ // TODO: Remove from `core-js@4`
4
5
  require('../../modules/esnext.array.filter-out');
6
+ require('../../modules/esnext.array.filter-reject');
5
7
  require('../../modules/esnext.array.find-last');
6
8
  require('../../modules/esnext.array.find-last-index');
9
+ require('../../modules/esnext.array.group-by');
7
10
  require('../../modules/esnext.array.is-template-object');
8
11
  require('../../modules/esnext.array.last-item');
9
12
  require('../../modules/esnext.array.last-index');
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/is-array');
1
+ var parent = require('../../stable/array/is-array');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/iterator');
1
+ var parent = require('../../stable/array/iterator');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/join');
1
+ var parent = require('../../stable/array/join');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/keys');
1
+ var parent = require('../../stable/array/keys');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/last-index-of');
1
+ var parent = require('../../stable/array/last-index-of');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/map');
1
+ var parent = require('../../stable/array/map');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/of');
1
+ var parent = require('../../stable/array/of');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/reduce-right');
1
+ var parent = require('../../stable/array/reduce-right');
2
2
 
3
3
  module.exports = parent;
@@ -1,3 +1,3 @@
1
- var parent = require('../../es/array/reduce');
1
+ var parent = require('../../stable/array/reduce');
2
2
 
3
3
  module.exports = parent;