Newer
Older
vmk-demo-bot / frontend / node_modules / es5-ext / math / acosh / is-implemented.js
@eugene-sukhodolskiy eugene-sukhodolskiy 19 days ago 163 bytes init
"use strict";

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