This commit is contained in:
tatianamac
2019-11-26 14:50:43 -08:00
parent 8a55660ed0
commit 6d5445ecc5
13894 changed files with 2233957 additions and 0 deletions

2
node_modules/core-js/fn/math/acosh.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.acosh');
module.exports = require('../../modules/_core').Math.acosh;

2
node_modules/core-js/fn/math/asinh.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.asinh');
module.exports = require('../../modules/_core').Math.asinh;

2
node_modules/core-js/fn/math/atanh.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.atanh');
module.exports = require('../../modules/_core').Math.atanh;

2
node_modules/core-js/fn/math/cbrt.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.cbrt');
module.exports = require('../../modules/_core').Math.cbrt;

2
node_modules/core-js/fn/math/clamp.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es7.math.clamp');
module.exports = require('../../modules/_core').Math.clamp;

2
node_modules/core-js/fn/math/clz32.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.clz32');
module.exports = require('../../modules/_core').Math.clz32;

2
node_modules/core-js/fn/math/cosh.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.cosh');
module.exports = require('../../modules/_core').Math.cosh;

2
node_modules/core-js/fn/math/deg-per-rad.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es7.math.deg-per-rad');
module.exports = Math.PI / 180;

2
node_modules/core-js/fn/math/degrees.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es7.math.degrees');
module.exports = require('../../modules/_core').Math.degrees;

2
node_modules/core-js/fn/math/expm1.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.expm1');
module.exports = require('../../modules/_core').Math.expm1;

2
node_modules/core-js/fn/math/fround.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.fround');
module.exports = require('../../modules/_core').Math.fround;

2
node_modules/core-js/fn/math/fscale.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es7.math.fscale');
module.exports = require('../../modules/_core').Math.fscale;

2
node_modules/core-js/fn/math/hypot.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.hypot');
module.exports = require('../../modules/_core').Math.hypot;

2
node_modules/core-js/fn/math/iaddh.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es7.math.iaddh');
module.exports = require('../../modules/_core').Math.iaddh;

2
node_modules/core-js/fn/math/imul.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.imul');
module.exports = require('../../modules/_core').Math.imul;

2
node_modules/core-js/fn/math/imulh.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es7.math.imulh');
module.exports = require('../../modules/_core').Math.imulh;

30
node_modules/core-js/fn/math/index.js generated vendored Normal file
View File

@ -0,0 +1,30 @@
require('../../modules/es6.math.acosh');
require('../../modules/es6.math.asinh');
require('../../modules/es6.math.atanh');
require('../../modules/es6.math.cbrt');
require('../../modules/es6.math.clz32');
require('../../modules/es6.math.cosh');
require('../../modules/es6.math.expm1');
require('../../modules/es6.math.fround');
require('../../modules/es6.math.hypot');
require('../../modules/es6.math.imul');
require('../../modules/es6.math.log10');
require('../../modules/es6.math.log1p');
require('../../modules/es6.math.log2');
require('../../modules/es6.math.sign');
require('../../modules/es6.math.sinh');
require('../../modules/es6.math.tanh');
require('../../modules/es6.math.trunc');
require('../../modules/es7.math.clamp');
require('../../modules/es7.math.deg-per-rad');
require('../../modules/es7.math.degrees');
require('../../modules/es7.math.fscale');
require('../../modules/es7.math.iaddh');
require('../../modules/es7.math.isubh');
require('../../modules/es7.math.imulh');
require('../../modules/es7.math.rad-per-deg');
require('../../modules/es7.math.radians');
require('../../modules/es7.math.scale');
require('../../modules/es7.math.umulh');
require('../../modules/es7.math.signbit');
module.exports = require('../../modules/_core').Math;

2
node_modules/core-js/fn/math/isubh.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es7.math.isubh');
module.exports = require('../../modules/_core').Math.isubh;

2
node_modules/core-js/fn/math/log10.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.log10');
module.exports = require('../../modules/_core').Math.log10;

2
node_modules/core-js/fn/math/log1p.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.log1p');
module.exports = require('../../modules/_core').Math.log1p;

2
node_modules/core-js/fn/math/log2.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.log2');
module.exports = require('../../modules/_core').Math.log2;

2
node_modules/core-js/fn/math/rad-per-deg.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es7.math.rad-per-deg');
module.exports = 180 / Math.PI;

2
node_modules/core-js/fn/math/radians.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es7.math.radians');
module.exports = require('../../modules/_core').Math.radians;

2
node_modules/core-js/fn/math/scale.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es7.math.scale');
module.exports = require('../../modules/_core').Math.scale;

2
node_modules/core-js/fn/math/sign.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.sign');
module.exports = require('../../modules/_core').Math.sign;

3
node_modules/core-js/fn/math/signbit.js generated vendored Normal file
View File

@ -0,0 +1,3 @@
require('../../modules/es7.math.signbit');
module.exports = require('../../modules/_core').Math.signbit;

2
node_modules/core-js/fn/math/sinh.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.sinh');
module.exports = require('../../modules/_core').Math.sinh;

2
node_modules/core-js/fn/math/tanh.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.tanh');
module.exports = require('../../modules/_core').Math.tanh;

2
node_modules/core-js/fn/math/trunc.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es6.math.trunc');
module.exports = require('../../modules/_core').Math.trunc;

2
node_modules/core-js/fn/math/umulh.js generated vendored Normal file
View File

@ -0,0 +1,2 @@
require('../../modules/es7.math.umulh');
module.exports = require('../../modules/_core').Math.umulh;