From abd94a7f5a50f43c797a11b53549ae48fff667c3 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 10 Oct 2016 03:43:44 +0200 Subject: add node_modules to address #4364 --- node_modules/core-js/fn/math/acosh.js | 2 ++ node_modules/core-js/fn/math/asinh.js | 2 ++ node_modules/core-js/fn/math/atanh.js | 2 ++ node_modules/core-js/fn/math/cbrt.js | 2 ++ node_modules/core-js/fn/math/clz32.js | 2 ++ node_modules/core-js/fn/math/cosh.js | 2 ++ node_modules/core-js/fn/math/expm1.js | 2 ++ node_modules/core-js/fn/math/fround.js | 2 ++ node_modules/core-js/fn/math/hypot.js | 2 ++ node_modules/core-js/fn/math/iaddh.js | 2 ++ node_modules/core-js/fn/math/imul.js | 2 ++ node_modules/core-js/fn/math/imulh.js | 2 ++ node_modules/core-js/fn/math/index.js | 22 ++++++++++++++++++++++ node_modules/core-js/fn/math/isubh.js | 2 ++ node_modules/core-js/fn/math/log10.js | 2 ++ node_modules/core-js/fn/math/log1p.js | 2 ++ node_modules/core-js/fn/math/log2.js | 2 ++ node_modules/core-js/fn/math/sign.js | 2 ++ node_modules/core-js/fn/math/sinh.js | 2 ++ node_modules/core-js/fn/math/tanh.js | 2 ++ node_modules/core-js/fn/math/trunc.js | 2 ++ node_modules/core-js/fn/math/umulh.js | 2 ++ 22 files changed, 64 insertions(+) create mode 100644 node_modules/core-js/fn/math/acosh.js create mode 100644 node_modules/core-js/fn/math/asinh.js create mode 100644 node_modules/core-js/fn/math/atanh.js create mode 100644 node_modules/core-js/fn/math/cbrt.js create mode 100644 node_modules/core-js/fn/math/clz32.js create mode 100644 node_modules/core-js/fn/math/cosh.js create mode 100644 node_modules/core-js/fn/math/expm1.js create mode 100644 node_modules/core-js/fn/math/fround.js create mode 100644 node_modules/core-js/fn/math/hypot.js create mode 100644 node_modules/core-js/fn/math/iaddh.js create mode 100644 node_modules/core-js/fn/math/imul.js create mode 100644 node_modules/core-js/fn/math/imulh.js create mode 100644 node_modules/core-js/fn/math/index.js create mode 100644 node_modules/core-js/fn/math/isubh.js create mode 100644 node_modules/core-js/fn/math/log10.js create mode 100644 node_modules/core-js/fn/math/log1p.js create mode 100644 node_modules/core-js/fn/math/log2.js create mode 100644 node_modules/core-js/fn/math/sign.js create mode 100644 node_modules/core-js/fn/math/sinh.js create mode 100644 node_modules/core-js/fn/math/tanh.js create mode 100644 node_modules/core-js/fn/math/trunc.js create mode 100644 node_modules/core-js/fn/math/umulh.js (limited to 'node_modules/core-js/fn/math') diff --git a/node_modules/core-js/fn/math/acosh.js b/node_modules/core-js/fn/math/acosh.js new file mode 100644 index 000000000..9c904c2d6 --- /dev/null +++ b/node_modules/core-js/fn/math/acosh.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.acosh'); +module.exports = require('../../modules/_core').Math.acosh; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/asinh.js b/node_modules/core-js/fn/math/asinh.js new file mode 100644 index 000000000..9e209c9d1 --- /dev/null +++ b/node_modules/core-js/fn/math/asinh.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.asinh'); +module.exports = require('../../modules/_core').Math.asinh; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/atanh.js b/node_modules/core-js/fn/math/atanh.js new file mode 100644 index 000000000..b116296d8 --- /dev/null +++ b/node_modules/core-js/fn/math/atanh.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.atanh'); +module.exports = require('../../modules/_core').Math.atanh; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/cbrt.js b/node_modules/core-js/fn/math/cbrt.js new file mode 100644 index 000000000..6ffec33a2 --- /dev/null +++ b/node_modules/core-js/fn/math/cbrt.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.cbrt'); +module.exports = require('../../modules/_core').Math.cbrt; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/clz32.js b/node_modules/core-js/fn/math/clz32.js new file mode 100644 index 000000000..beeaae165 --- /dev/null +++ b/node_modules/core-js/fn/math/clz32.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.clz32'); +module.exports = require('../../modules/_core').Math.clz32; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/cosh.js b/node_modules/core-js/fn/math/cosh.js new file mode 100644 index 000000000..bf92dc13d --- /dev/null +++ b/node_modules/core-js/fn/math/cosh.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.cosh'); +module.exports = require('../../modules/_core').Math.cosh; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/expm1.js b/node_modules/core-js/fn/math/expm1.js new file mode 100644 index 000000000..0b30ebb1b --- /dev/null +++ b/node_modules/core-js/fn/math/expm1.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.expm1'); +module.exports = require('../../modules/_core').Math.expm1; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/fround.js b/node_modules/core-js/fn/math/fround.js new file mode 100644 index 000000000..c75a22937 --- /dev/null +++ b/node_modules/core-js/fn/math/fround.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.fround'); +module.exports = require('../../modules/_core').Math.fround; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/hypot.js b/node_modules/core-js/fn/math/hypot.js new file mode 100644 index 000000000..2126285c2 --- /dev/null +++ b/node_modules/core-js/fn/math/hypot.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.hypot'); +module.exports = require('../../modules/_core').Math.hypot; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/iaddh.js b/node_modules/core-js/fn/math/iaddh.js new file mode 100644 index 000000000..cae754ee1 --- /dev/null +++ b/node_modules/core-js/fn/math/iaddh.js @@ -0,0 +1,2 @@ +require('../../modules/es7.math.iaddh'); +module.exports = require('../../modules/_core').Math.iaddh; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/imul.js b/node_modules/core-js/fn/math/imul.js new file mode 100644 index 000000000..1f5ce1610 --- /dev/null +++ b/node_modules/core-js/fn/math/imul.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.imul'); +module.exports = require('../../modules/_core').Math.imul; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/imulh.js b/node_modules/core-js/fn/math/imulh.js new file mode 100644 index 000000000..3b47bf8c2 --- /dev/null +++ b/node_modules/core-js/fn/math/imulh.js @@ -0,0 +1,2 @@ +require('../../modules/es7.math.imulh'); +module.exports = require('../../modules/_core').Math.imulh; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/index.js b/node_modules/core-js/fn/math/index.js new file mode 100644 index 000000000..8a2664b18 --- /dev/null +++ b/node_modules/core-js/fn/math/index.js @@ -0,0 +1,22 @@ +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.iaddh'); +require('../../modules/es7.math.isubh'); +require('../../modules/es7.math.imulh'); +require('../../modules/es7.math.umulh'); +module.exports = require('../../modules/_core').Math; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/isubh.js b/node_modules/core-js/fn/math/isubh.js new file mode 100644 index 000000000..e120e423f --- /dev/null +++ b/node_modules/core-js/fn/math/isubh.js @@ -0,0 +1,2 @@ +require('../../modules/es7.math.isubh'); +module.exports = require('../../modules/_core').Math.isubh; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/log10.js b/node_modules/core-js/fn/math/log10.js new file mode 100644 index 000000000..1246e0ae0 --- /dev/null +++ b/node_modules/core-js/fn/math/log10.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.log10'); +module.exports = require('../../modules/_core').Math.log10; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/log1p.js b/node_modules/core-js/fn/math/log1p.js new file mode 100644 index 000000000..047b84c05 --- /dev/null +++ b/node_modules/core-js/fn/math/log1p.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.log1p'); +module.exports = require('../../modules/_core').Math.log1p; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/log2.js b/node_modules/core-js/fn/math/log2.js new file mode 100644 index 000000000..ce3e99c1e --- /dev/null +++ b/node_modules/core-js/fn/math/log2.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.log2'); +module.exports = require('../../modules/_core').Math.log2; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/sign.js b/node_modules/core-js/fn/math/sign.js new file mode 100644 index 000000000..0963ecaf9 --- /dev/null +++ b/node_modules/core-js/fn/math/sign.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.sign'); +module.exports = require('../../modules/_core').Math.sign; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/sinh.js b/node_modules/core-js/fn/math/sinh.js new file mode 100644 index 000000000..c35cb7394 --- /dev/null +++ b/node_modules/core-js/fn/math/sinh.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.sinh'); +module.exports = require('../../modules/_core').Math.sinh; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/tanh.js b/node_modules/core-js/fn/math/tanh.js new file mode 100644 index 000000000..3d1966db3 --- /dev/null +++ b/node_modules/core-js/fn/math/tanh.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.tanh'); +module.exports = require('../../modules/_core').Math.tanh; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/trunc.js b/node_modules/core-js/fn/math/trunc.js new file mode 100644 index 000000000..135b7dcb8 --- /dev/null +++ b/node_modules/core-js/fn/math/trunc.js @@ -0,0 +1,2 @@ +require('../../modules/es6.math.trunc'); +module.exports = require('../../modules/_core').Math.trunc; \ No newline at end of file diff --git a/node_modules/core-js/fn/math/umulh.js b/node_modules/core-js/fn/math/umulh.js new file mode 100644 index 000000000..d93b9ae05 --- /dev/null +++ b/node_modules/core-js/fn/math/umulh.js @@ -0,0 +1,2 @@ +require('../../modules/es7.math.umulh'); +module.exports = require('../../modules/_core').Math.umulh; \ No newline at end of file -- cgit v1.2.3