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

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

The newest version!

// Math.asinh
Math.asinh = function asinh(x) {
	return x === -Infinity ? x : Math.log(x + Math.sqrt(x * x + 1));
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy