aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/math/cosh/is-implemented.js
blob: 7173054c7ecc6fb4d360261170203337a1db9bf3 (plain)
1
2
3
4
5
6
7
"use strict";

module.exports = function () {
	var cosh = Math.cosh;
	if (typeof cosh !== "function") return false;
	return cosh(1) === 1.5430806348152437;
};