aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/es/math
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/core-js/es/math')
-rw-r--r--node_modules/core-js/es/math/acosh.js4
-rw-r--r--node_modules/core-js/es/math/asinh.js4
-rw-r--r--node_modules/core-js/es/math/atanh.js4
-rw-r--r--node_modules/core-js/es/math/cbrt.js4
-rw-r--r--node_modules/core-js/es/math/clz32.js4
-rw-r--r--node_modules/core-js/es/math/cosh.js4
-rw-r--r--node_modules/core-js/es/math/expm1.js4
-rw-r--r--node_modules/core-js/es/math/fround.js4
-rw-r--r--node_modules/core-js/es/math/hypot.js4
-rw-r--r--node_modules/core-js/es/math/imul.js4
-rw-r--r--node_modules/core-js/es/math/index.js21
-rw-r--r--node_modules/core-js/es/math/log10.js4
-rw-r--r--node_modules/core-js/es/math/log1p.js4
-rw-r--r--node_modules/core-js/es/math/log2.js4
-rw-r--r--node_modules/core-js/es/math/sign.js4
-rw-r--r--node_modules/core-js/es/math/sinh.js4
-rw-r--r--node_modules/core-js/es/math/tanh.js4
-rw-r--r--node_modules/core-js/es/math/to-string-tag.js3
-rw-r--r--node_modules/core-js/es/math/trunc.js4
19 files changed, 92 insertions, 0 deletions
diff --git a/node_modules/core-js/es/math/acosh.js b/node_modules/core-js/es/math/acosh.js
new file mode 100644
index 0000000..0ef459b
--- /dev/null
+++ b/node_modules/core-js/es/math/acosh.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.acosh');
+var path = require('../../internals/path');
+
+module.exports = path.Math.acosh;
diff --git a/node_modules/core-js/es/math/asinh.js b/node_modules/core-js/es/math/asinh.js
new file mode 100644
index 0000000..f300ec4
--- /dev/null
+++ b/node_modules/core-js/es/math/asinh.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.asinh');
+var path = require('../../internals/path');
+
+module.exports = path.Math.asinh;
diff --git a/node_modules/core-js/es/math/atanh.js b/node_modules/core-js/es/math/atanh.js
new file mode 100644
index 0000000..6ca6111
--- /dev/null
+++ b/node_modules/core-js/es/math/atanh.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.atanh');
+var path = require('../../internals/path');
+
+module.exports = path.Math.atanh;
diff --git a/node_modules/core-js/es/math/cbrt.js b/node_modules/core-js/es/math/cbrt.js
new file mode 100644
index 0000000..c8297a7
--- /dev/null
+++ b/node_modules/core-js/es/math/cbrt.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.cbrt');
+var path = require('../../internals/path');
+
+module.exports = path.Math.cbrt;
diff --git a/node_modules/core-js/es/math/clz32.js b/node_modules/core-js/es/math/clz32.js
new file mode 100644
index 0000000..a2ea307
--- /dev/null
+++ b/node_modules/core-js/es/math/clz32.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.clz32');
+var path = require('../../internals/path');
+
+module.exports = path.Math.clz32;
diff --git a/node_modules/core-js/es/math/cosh.js b/node_modules/core-js/es/math/cosh.js
new file mode 100644
index 0000000..09dc191
--- /dev/null
+++ b/node_modules/core-js/es/math/cosh.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.cosh');
+var path = require('../../internals/path');
+
+module.exports = path.Math.cosh;
diff --git a/node_modules/core-js/es/math/expm1.js b/node_modules/core-js/es/math/expm1.js
new file mode 100644
index 0000000..9657376
--- /dev/null
+++ b/node_modules/core-js/es/math/expm1.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.expm1');
+var path = require('../../internals/path');
+
+module.exports = path.Math.expm1;
diff --git a/node_modules/core-js/es/math/fround.js b/node_modules/core-js/es/math/fround.js
new file mode 100644
index 0000000..41c7292
--- /dev/null
+++ b/node_modules/core-js/es/math/fround.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.fround');
+var path = require('../../internals/path');
+
+module.exports = path.Math.fround;
diff --git a/node_modules/core-js/es/math/hypot.js b/node_modules/core-js/es/math/hypot.js
new file mode 100644
index 0000000..34d5175
--- /dev/null
+++ b/node_modules/core-js/es/math/hypot.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.hypot');
+var path = require('../../internals/path');
+
+module.exports = path.Math.hypot;
diff --git a/node_modules/core-js/es/math/imul.js b/node_modules/core-js/es/math/imul.js
new file mode 100644
index 0000000..2f17f93
--- /dev/null
+++ b/node_modules/core-js/es/math/imul.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.imul');
+var path = require('../../internals/path');
+
+module.exports = path.Math.imul;
diff --git a/node_modules/core-js/es/math/index.js b/node_modules/core-js/es/math/index.js
new file mode 100644
index 0000000..8986227
--- /dev/null
+++ b/node_modules/core-js/es/math/index.js
@@ -0,0 +1,21 @@
+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.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.tanh');
+require('../../modules/es.math.to-string-tag');
+require('../../modules/es.math.trunc');
+var path = require('../../internals/path');
+
+module.exports = path.Math;
diff --git a/node_modules/core-js/es/math/log10.js b/node_modules/core-js/es/math/log10.js
new file mode 100644
index 0000000..b91166f
--- /dev/null
+++ b/node_modules/core-js/es/math/log10.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.log10');
+var path = require('../../internals/path');
+
+module.exports = path.Math.log10;
diff --git a/node_modules/core-js/es/math/log1p.js b/node_modules/core-js/es/math/log1p.js
new file mode 100644
index 0000000..a1d4db1
--- /dev/null
+++ b/node_modules/core-js/es/math/log1p.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.log1p');
+var path = require('../../internals/path');
+
+module.exports = path.Math.log1p;
diff --git a/node_modules/core-js/es/math/log2.js b/node_modules/core-js/es/math/log2.js
new file mode 100644
index 0000000..99c0594
--- /dev/null
+++ b/node_modules/core-js/es/math/log2.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.log2');
+var path = require('../../internals/path');
+
+module.exports = path.Math.log2;
diff --git a/node_modules/core-js/es/math/sign.js b/node_modules/core-js/es/math/sign.js
new file mode 100644
index 0000000..9f6eb95
--- /dev/null
+++ b/node_modules/core-js/es/math/sign.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.sign');
+var path = require('../../internals/path');
+
+module.exports = path.Math.sign;
diff --git a/node_modules/core-js/es/math/sinh.js b/node_modules/core-js/es/math/sinh.js
new file mode 100644
index 0000000..cf8d51a
--- /dev/null
+++ b/node_modules/core-js/es/math/sinh.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.sinh');
+var path = require('../../internals/path');
+
+module.exports = path.Math.sinh;
diff --git a/node_modules/core-js/es/math/tanh.js b/node_modules/core-js/es/math/tanh.js
new file mode 100644
index 0000000..030c175
--- /dev/null
+++ b/node_modules/core-js/es/math/tanh.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.tanh');
+var path = require('../../internals/path');
+
+module.exports = path.Math.tanh;
diff --git a/node_modules/core-js/es/math/to-string-tag.js b/node_modules/core-js/es/math/to-string-tag.js
new file mode 100644
index 0000000..c8714c2
--- /dev/null
+++ b/node_modules/core-js/es/math/to-string-tag.js
@@ -0,0 +1,3 @@
+require('../../modules/es.math.to-string-tag');
+
+module.exports = 'Math';
diff --git a/node_modules/core-js/es/math/trunc.js b/node_modules/core-js/es/math/trunc.js
new file mode 100644
index 0000000..510337b
--- /dev/null
+++ b/node_modules/core-js/es/math/trunc.js
@@ -0,0 +1,4 @@
+require('../../modules/es.math.trunc');
+var path = require('../../internals/path');
+
+module.exports = path.Math.trunc;