All Downloads are FREE. Search and download functionalities are using the official Maven repository.

polyfills.Math.atanh.raw.js Maven / Gradle / Ivy

The newest version!

// Math.atanh
Math.atanh = function atanh(x) {
	return Math.log((1 + x) / (1 - x)) / 2;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy