my-idlers/node_modules/es5-ext/test/math/tanh/shim.js
cp6 fd22b0bf58 V2 (Laravel re-make)
V2 (Laravel re-make)
2022-03-06 02:02:12 +11:00

12 lines
257 B
JavaScript

"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);
};