|  | 
| 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 | 
| @@ -879,10 +879,10 @@ var store = __webpack_require__(34); | 
| 879 | 879 | (module.exports = function (key, value) { | 
| 880 | 880 |   return store[key] || (store[key] = value !== undefined ? value : {}); | 
| 881 | 881 | })('versions', []).push({ | 
| 882 |  | -  version: '3.23.0', | 
|  | 882 | +  version: '3.23.1', | 
| 883 | 883 |   mode: IS_PURE ? 'pure' : 'global', | 
| 884 | 884 |   copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)', | 
| 885 |  | -  license: 'https://github.com/zloirock/core-js/blob/v3.23.0/LICENSE', | 
|  | 885 | +  license: 'https://github.com/zloirock/core-js/blob/v3.23.1/LICENSE', | 
| 886 | 886 |   source: 'https://github.com/zloirock/core-js' | 
| 887 | 887 | }); | 
| 888 | 888 | 
 | 
| @@ -2777,6 +2777,7 @@ module.exports = function () { | 
| 2777 | 2777 |   if (that.multiline) result += 'm'; | 
| 2778 | 2778 |   if (that.dotAll) result += 's'; | 
| 2779 | 2779 |   if (that.unicode) result += 'u'; | 
|  | 2780 | +  if (that.unicodeSets) result += 'v'; | 
| 2780 | 2781 |   if (that.sticky) result += 'y'; | 
| 2781 | 2782 |   return result; | 
| 2782 | 2783 | }; | 
| @@ -7525,10 +7526,12 @@ $({ target: 'Math', stat: true, forced: true }, { | 
| 7525 | 7526 | 
 | 
| 7526 | 7527 | var $ = __webpack_require__(2); | 
| 7527 | 7528 | 
 | 
|  | 7529 | +var DEG_PER_RAD = Math.PI / 180; | 
|  | 7530 | + | 
| 7528 | 7531 | // `Math.DEG_PER_RAD` constant | 
| 7529 | 7532 | // https://rwaldron.github.io/proposal-math-extensions/ | 
| 7530 |  | -$({ target: 'Math', stat: true, nonConfigurable: true, nonWritable: true, forced: true }, { | 
| 7531 |  | -  DEG_PER_RAD: Math.PI / 180 | 
|  | 7533 | +$({ target: 'Math', stat: true, nonConfigurable: true, nonWritable: true, forced: Math.DEG_PER_RAD !== DEG_PER_RAD }, { | 
|  | 7534 | +  DEG_PER_RAD: DEG_PER_RAD | 
| 7532 | 7535 | }); | 
| 7533 | 7536 | 
 | 
| 7534 | 7537 | 
 | 
| @@ -7640,10 +7643,12 @@ module.exports = Math.sign || function sign(x) { | 
| 7640 | 7643 | 
 | 
| 7641 | 7644 | var $ = __webpack_require__(2); | 
| 7642 | 7645 | 
 | 
|  | 7646 | +var RAD_PER_DEG = 180 / Math.PI; | 
|  | 7647 | + | 
| 7643 | 7648 | // `Math.RAD_PER_DEG` constant | 
| 7644 | 7649 | // https://rwaldron.github.io/proposal-math-extensions/ | 
| 7645 |  | -$({ target: 'Math', stat: true, nonConfigurable: true, nonWritable: true, forced: true }, { | 
| 7646 |  | -  RAD_PER_DEG: 180 / Math.PI | 
|  | 7650 | +$({ target: 'Math', stat: true, nonConfigurable: true, nonWritable: true, forced: Math.RAD_PER_DEG !== RAD_PER_DEG }, { | 
|  | 7651 | +  RAD_PER_DEG: RAD_PER_DEG | 
| 7647 | 7652 | }); | 
| 7648 | 7653 | 
 | 
| 7649 | 7654 | 
 | 
|  | 
0 commit comments