This commit is contained in:
hatuhn
2019-09-13 09:45:04 +07:00
parent f14a34ba19
commit 558fb07261
16790 changed files with 0 additions and 1642370 deletions

View File

@@ -1,5 +0,0 @@
"use strict";
var isImplemented = require("../../../math/tanh/is-implemented");
module.exports = function (a) { a(isImplemented(), true); };

View File

@@ -1,3 +0,0 @@
"use strict";
module.exports = require("./shim");

View File

@@ -1,3 +0,0 @@
"use strict";
module.exports = function (t, a) { a(typeof t(), "boolean"); };

View File

@@ -1,11 +0,0 @@
"use strict";
module.exports = function (t, a) {
a(t({}), NaN, "NaN");
a(t(0), 0, "Zero");
a(t(Infinity), 1, "Infinity");
a(t(-Infinity), -1, "-Infinity");
a(t(1), 0.7615941559557649, "1");
a(t(Number.MAX_VALUE), 1);
a(t(-Number.MAX_VALUE), -1);
};