project files added

This commit is contained in:
mhalfmann
2021-06-15 16:00:08 +02:00
parent e156e2f053
commit db46afa351
13928 changed files with 1569902 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
"use strict";
if (!require("./is-implemented")()) {
Object.defineProperty(Math, "sinh", { value: require("./shim"),
configurable: true,
enumerable: false,
writable: true });
}
+5
View File
@@ -0,0 +1,5 @@
"use strict";
module.exports = require("./is-implemented")()
? Math.sinh
: require("./shim");
+7
View File
@@ -0,0 +1,7 @@
"use strict";
module.exports = function () {
var sinh = Math.sinh;
if (typeof sinh !== "function") return false;
return (sinh(1) === 1.1752011936438014) && (sinh(Number.MIN_VALUE) === 5e-324);
};
+18
View File
@@ -0,0 +1,18 @@
// Parts of implementation taken from es6-shim project
// See: https://github.com/paulmillr/es6-shim/blob/master/es6-shim.js
"use strict";
var expm1 = require("../expm1")
, abs = Math.abs
, exp = Math.exp
, e = Math.E;
module.exports = function (value) {
if (isNaN(value)) return NaN;
value = Number(value);
if (value === 0) return value;
if (!isFinite(value)) return value;
if (abs(value) < 1) return (expm1(value) - expm1(-value)) / 2;
return (exp(value - 1) - exp(-value - 1)) * e / 2;
};