blob: b6226b4d514e6dd9f80915651ab999a76d02791a [file] [log] [blame]
"use strict";
module.exports = function () {
var tanh = Math.tanh;
if (typeof tanh !== "function") return false;
return tanh(1) === 0.7615941559557649 && tanh(Number.MAX_VALUE) === 1;
};