core-js 3.25.2 → 3.25.4

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 (118) hide show
  1. package/es/json/index.js +1 -1
  2. package/es/json/stringify.js +1 -1
  3. package/internals/array-buffer-basic-detection.js +1 -1
  4. package/internals/array-buffer-non-extensible.js +1 -1
  5. package/internals/array-copy-within.js +1 -1
  6. package/internals/array-for-each.js +1 -1
  7. package/internals/array-last-index-of.js +1 -1
  8. package/internals/array-set-length.js +2 -2
  9. package/internals/check-correctness-of-iteration.js +1 -1
  10. package/internals/correct-prototype-getter.js +1 -1
  11. package/internals/define-global-property.js +1 -1
  12. package/internals/descriptors.js +1 -1
  13. package/internals/error-stack-installable.js +1 -1
  14. package/internals/error-to-string.js +1 -1
  15. package/internals/freezing.js +1 -1
  16. package/internals/function-apply.js +1 -1
  17. package/internals/function-bind-native.js +1 -1
  18. package/internals/function-name.js +1 -1
  19. package/internals/function-uncurry-this.js +8 -6
  20. package/internals/get-map-iterator.js +1 -1
  21. package/internals/get-set-iterator.js +1 -1
  22. package/internals/global.js +1 -1
  23. package/internals/has-own-property.js +1 -1
  24. package/internals/ie8-dom-define.js +1 -1
  25. package/internals/is-array.js +1 -1
  26. package/internals/is-integral-number.js +1 -1
  27. package/internals/iterators-core.js +1 -1
  28. package/internals/make-built-in.js +1 -1
  29. package/internals/math-expm1.js +1 -1
  30. package/internals/math-fround.js +1 -1
  31. package/internals/math-log10.js +1 -1
  32. package/internals/math-log1p.js +1 -1
  33. package/internals/math-sign.js +1 -1
  34. package/internals/math-trunc.js +1 -1
  35. package/internals/number-is-finite.js +1 -1
  36. package/internals/object-assign.js +3 -3
  37. package/internals/object-create.js +1 -1
  38. package/internals/object-define-properties.js +1 -1
  39. package/internals/object-define-property.js +2 -2
  40. package/internals/object-get-own-property-descriptor.js +1 -1
  41. package/internals/object-get-own-property-names-external.js +1 -1
  42. package/internals/object-get-own-property-names.js +1 -1
  43. package/internals/object-get-own-property-symbols.js +1 -1
  44. package/internals/object-get-prototype-of.js +1 -1
  45. package/internals/object-is-extensible.js +1 -1
  46. package/internals/object-keys.js +1 -1
  47. package/internals/object-property-is-enumerable.js +1 -1
  48. package/internals/object-prototype-accessors-forced.js +1 -1
  49. package/internals/object-set-prototype-of.js +2 -2
  50. package/internals/same-value.js +1 -1
  51. package/internals/shared.js +2 -2
  52. package/internals/string-trim-end.js +1 -1
  53. package/internals/string-trim-start.js +1 -1
  54. package/internals/symbol-constructor-detection.js +2 -2
  55. package/internals/symbol-registry-detection.js +1 -1
  56. package/internals/task.js +4 -4
  57. package/internals/to-big-int.js +1 -1
  58. package/internals/use-symbol-as-uid.js +1 -1
  59. package/internals/v8-prototype-define-bug.js +1 -1
  60. package/modules/es.array.for-each.js +1 -1
  61. package/modules/es.array.from.js +1 -1
  62. package/modules/es.array.index-of.js +1 -1
  63. package/modules/es.array.last-index-of.js +1 -1
  64. package/modules/es.array.of.js +1 -1
  65. package/modules/es.array.push.js +1 -1
  66. package/modules/es.array.unshift.js +1 -1
  67. package/modules/es.math.acosh.js +1 -1
  68. package/modules/es.math.asinh.js +1 -1
  69. package/modules/es.math.atanh.js +1 -1
  70. package/modules/es.math.cosh.js +1 -1
  71. package/modules/es.math.expm1.js +1 -1
  72. package/modules/es.math.hypot.js +1 -1
  73. package/modules/es.math.imul.js +1 -1
  74. package/modules/es.math.sinh.js +1 -1
  75. package/modules/es.number.parse-float.js +1 -1
  76. package/modules/es.number.parse-int.js +1 -1
  77. package/modules/es.object.assign.js +1 -1
  78. package/modules/es.object.define-properties.js +1 -1
  79. package/modules/es.object.define-property.js +1 -1
  80. package/modules/es.object.freeze.js +1 -1
  81. package/modules/es.object.get-own-property-names.js +1 -1
  82. package/modules/es.object.is-extensible.js +1 -1
  83. package/modules/es.object.is-frozen.js +1 -1
  84. package/modules/es.object.is-sealed.js +1 -1
  85. package/modules/es.object.prevent-extensions.js +1 -1
  86. package/modules/es.object.proto.js +2 -2
  87. package/modules/es.object.seal.js +1 -1
  88. package/modules/es.reflect.apply.js +1 -1
  89. package/modules/es.reflect.define-property.js +1 -1
  90. package/modules/es.reflect.set.js +1 -1
  91. package/modules/es.regexp.flags.js +2 -2
  92. package/modules/es.string.at-alternative.js +1 -1
  93. package/modules/es.string.ends-with.js +1 -1
  94. package/modules/es.string.from-code-point.js +1 -1
  95. package/modules/es.string.match-all.js +1 -1
  96. package/modules/es.string.starts-with.js +1 -1
  97. package/modules/es.string.substr.js +1 -1
  98. package/modules/es.string.trim-end.js +1 -1
  99. package/modules/es.string.trim-left.js +1 -1
  100. package/modules/es.string.trim-right.js +1 -1
  101. package/modules/es.string.trim-start.js +1 -1
  102. package/modules/es.typed-array.fill.js +1 -1
  103. package/modules/es.typed-array.set.js +1 -1
  104. package/modules/es.typed-array.slice.js +1 -1
  105. package/modules/esnext.array.group-by-to-map.js +2 -1
  106. package/modules/esnext.array.group-to-map.js +2 -1
  107. package/modules/esnext.array.is-template-object.js +1 -1
  108. package/modules/esnext.bigint.range.js +1 -1
  109. package/modules/esnext.function.is-callable.js +1 -1
  110. package/modules/esnext.typed-array.to-spliced.js +1 -1
  111. package/modules/esnext.typed-array.with.js +1 -1
  112. package/modules/web.dom-exception.constructor.js +1 -1
  113. package/modules/web.dom-exception.stack.js +1 -1
  114. package/modules/web.structured-clone.js +8 -1
  115. package/modules/web.url-search-params.constructor.js +1 -1
  116. package/package.json +1 -1
  117. package/stage/3.js +0 -1
  118. package/stage/4.js +1 -0
@@ -34,7 +34,7 @@ var URL_SEARCH_PARAMS_ITERATOR = URL_SEARCH_PARAMS + 'Iterator';
34
34
  var setInternalState = InternalStateModule.set;
35
35
  var getInternalParamsState = InternalStateModule.getterFor(URL_SEARCH_PARAMS);
36
36
  var getInternalIteratorState = InternalStateModule.getterFor(URL_SEARCH_PARAMS_ITERATOR);
37
- // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
37
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
38
38
  var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
39
39
 
40
40
  // Avoid NodeJS experimental warning
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "core-js",
3
3
  "description": "Standard library",
4
- "version": "3.25.2",
4
+ "version": "3.25.4",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/zloirock/core-js.git"
package/stage/3.js CHANGED
@@ -1,4 +1,3 @@
1
- require('../proposals/array-find-from-last');
2
1
  require('../proposals/array-grouping-stage-3-2');
3
2
  require('../proposals/change-array-by-copy');
4
3
  // TODO: Obsolete versions, remove from `core-js@4`
package/stage/4.js CHANGED
@@ -1,5 +1,6 @@
1
1
  // TODO: Remove this entry from `core-js@4`
2
2
  require('../proposals/accessible-object-hasownproperty');
3
+ require('../proposals/array-find-from-last');
3
4
  // require('../proposals/error-cause');
4
5
  require('../proposals/global-this');
5
6
  require('../proposals/promise-all-settled');