Newer
Older
2024-Tsubasa / system / websocket_test / node_modules / es5-ext / math / atanh / is-implemented.js
@tsubasa tsubasa on 11 Mar 2024 181 bytes add:directory
"use strict";

module.exports = function () {
	var atanh = Math.atanh;
	if (typeof atanh !== "function") return false;
	return Math.round(atanh(0.5) * 1e15) === 549306144334055;
};