summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/escope/node_modules/es6-map/node_modules/es5-ext/math/acosh/is-implemented.js
blob: 363f0d8bcdd61b8607a532ca86304d5e226c7d29 (plain)
1
2
3
4
5
6
7
'use strict';

module.exports = function () {
	var acosh = Math.acosh;
	if (typeof acosh !== 'function') return false;
	return acosh(2) === 1.3169578969248166;
};