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

module.exports = function () {
	var atanh = Math.atanh;
	if (typeof atanh !== 'function') return false;
	return atanh(0.5) === 0.5493061443340549;
};