This commit is contained in:
Iliyan Angelov
2025-09-14 23:24:25 +03:00
commit c67067a2a4
71311 changed files with 6800714 additions and 0 deletions

5
frontend/node_modules/core-js-pure/es/math/acosh.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.acosh');
var path = require('../../internals/path');
module.exports = path.Math.acosh;

5
frontend/node_modules/core-js-pure/es/math/asinh.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.asinh');
var path = require('../../internals/path');
module.exports = path.Math.asinh;

5
frontend/node_modules/core-js-pure/es/math/atanh.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.atanh');
var path = require('../../internals/path');
module.exports = path.Math.atanh;

5
frontend/node_modules/core-js-pure/es/math/cbrt.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.cbrt');
var path = require('../../internals/path');
module.exports = path.Math.cbrt;

5
frontend/node_modules/core-js-pure/es/math/clz32.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.clz32');
var path = require('../../internals/path');
module.exports = path.Math.clz32;

5
frontend/node_modules/core-js-pure/es/math/cosh.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.cosh');
var path = require('../../internals/path');
module.exports = path.Math.cosh;

5
frontend/node_modules/core-js-pure/es/math/expm1.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.expm1');
var path = require('../../internals/path');
module.exports = path.Math.expm1;

View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.f16round');
var path = require('../../internals/path');
module.exports = path.Math.f16round;

5
frontend/node_modules/core-js-pure/es/math/fround.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.fround');
var path = require('../../internals/path');
module.exports = path.Math.fround;

5
frontend/node_modules/core-js-pure/es/math/hypot.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.hypot');
var path = require('../../internals/path');
module.exports = path.Math.hypot;

5
frontend/node_modules/core-js-pure/es/math/imul.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.imul');
var path = require('../../internals/path');
module.exports = path.Math.imul;

25
frontend/node_modules/core-js-pure/es/math/index.js generated vendored Normal file
View File

@@ -0,0 +1,25 @@
'use strict';
require('../../modules/es.array.iterator');
require('../../modules/es.math.acosh');
require('../../modules/es.math.asinh');
require('../../modules/es.math.atanh');
require('../../modules/es.math.cbrt');
require('../../modules/es.math.clz32');
require('../../modules/es.math.cosh');
require('../../modules/es.math.expm1');
require('../../modules/es.math.fround');
require('../../modules/es.math.f16round');
require('../../modules/es.math.hypot');
require('../../modules/es.math.imul');
require('../../modules/es.math.log10');
require('../../modules/es.math.log1p');
require('../../modules/es.math.log2');
require('../../modules/es.math.sign');
require('../../modules/es.math.sinh');
require('../../modules/es.math.sum-precise');
require('../../modules/es.math.tanh');
require('../../modules/es.math.to-string-tag');
require('../../modules/es.math.trunc');
var path = require('../../internals/path');
module.exports = path.Math;

5
frontend/node_modules/core-js-pure/es/math/log10.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.log10');
var path = require('../../internals/path');
module.exports = path.Math.log10;

5
frontend/node_modules/core-js-pure/es/math/log1p.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.log1p');
var path = require('../../internals/path');
module.exports = path.Math.log1p;

5
frontend/node_modules/core-js-pure/es/math/log2.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.log2');
var path = require('../../internals/path');
module.exports = path.Math.log2;

5
frontend/node_modules/core-js-pure/es/math/sign.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.sign');
var path = require('../../internals/path');
module.exports = path.Math.sign;

5
frontend/node_modules/core-js-pure/es/math/sinh.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.sinh');
var path = require('../../internals/path');
module.exports = path.Math.sinh;

View File

@@ -0,0 +1,6 @@
'use strict';
require('../../modules/es.array.iterator');
require('../../modules/es.math.sum-precise');
var path = require('../../internals/path');
module.exports = path.Math.sumPrecise;

5
frontend/node_modules/core-js-pure/es/math/tanh.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.tanh');
var path = require('../../internals/path');
module.exports = path.Math.tanh;

View File

@@ -0,0 +1,4 @@
'use strict';
require('../../modules/es.math.to-string-tag');
module.exports = 'Math';

5
frontend/node_modules/core-js-pure/es/math/trunc.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.math.trunc');
var path = require('../../internals/path');
module.exports = path.Math.trunc;