core-js-bundle 3.23.0 → 3.23.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
- * core-js 3.23.0
2
+ * core-js 3.23.1
3
3
  * © 2014-2022 Denis Pushkarev (zloirock.ru)
4
- * license: https://github.com/zloirock/core-js/blob/v3.23.0/LICENSE
4
+ * license: https://github.com/zloirock/core-js/blob/v3.23.1/LICENSE
5
5
  * source: https://github.com/zloirock/core-js
6
6
  */
7
7
  !function (undefined) { 'use strict'; /******/ (function(modules) { // webpackBootstrap
@@ -1328,10 +1328,10 @@ var store = __webpack_require__(35);
1328
1328
  (module.exports = function (key, value) {
1329
1329
  return store[key] || (store[key] = value !== undefined ? value : {});
1330
1330
  })('versions', []).push({
1331
- version: '3.23.0',
1331
+ version: '3.23.1',
1332
1332
  mode: IS_PURE ? 'pure' : 'global',
1333
1333
  copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
1334
- license: 'https://github.com/zloirock/core-js/blob/v3.23.0/LICENSE',
1334
+ license: 'https://github.com/zloirock/core-js/blob/v3.23.1/LICENSE',
1335
1335
  source: 'https://github.com/zloirock/core-js'
1336
1336
  });
1337
1337
 
@@ -10718,6 +10718,7 @@ module.exports = function () {
10718
10718
  if (that.multiline) result += 'm';
10719
10719
  if (that.dotAll) result += 's';
10720
10720
  if (that.unicode) result += 'u';
10721
+ if (that.unicodeSets) result += 'v';
10721
10722
  if (that.sticky) result += 'y';
10722
10723
  return result;
10723
10724
  };
@@ -17351,10 +17352,12 @@ $({ target: 'Math', stat: true, forced: true }, {
17351
17352
 
17352
17353
  var $ = __webpack_require__(3);
17353
17354
 
17355
+ var DEG_PER_RAD = Math.PI / 180;
17356
+
17354
17357
  // `Math.DEG_PER_RAD` constant
17355
17358
  // https://rwaldron.github.io/proposal-math-extensions/
17356
- $({ target: 'Math', stat: true, nonConfigurable: true, nonWritable: true, forced: true }, {
17357
- DEG_PER_RAD: Math.PI / 180
17359
+ $({ target: 'Math', stat: true, nonConfigurable: true, nonWritable: true, forced: Math.DEG_PER_RAD !== DEG_PER_RAD }, {
17360
+ DEG_PER_RAD: DEG_PER_RAD
17358
17361
  });
17359
17362
 
17360
17363
 
@@ -17480,10 +17483,12 @@ $({ target: 'Math', stat: true, forced: true }, {
17480
17483
 
17481
17484
  var $ = __webpack_require__(3);
17482
17485
 
17486
+ var RAD_PER_DEG = 180 / Math.PI;
17487
+
17483
17488
  // `Math.RAD_PER_DEG` constant
17484
17489
  // https://rwaldron.github.io/proposal-math-extensions/
17485
- $({ target: 'Math', stat: true, nonConfigurable: true, nonWritable: true, forced: true }, {
17486
- RAD_PER_DEG: 180 / Math.PI
17490
+ $({ target: 'Math', stat: true, nonConfigurable: true, nonWritable: true, forced: Math.RAD_PER_DEG !== RAD_PER_DEG }, {
17491
+ RAD_PER_DEG: RAD_PER_DEG
17487
17492
  });
17488
17493
 
17489
17494