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

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

The newest version!

// Math.sinh
Math.sinh = function sinh(x) {
	var y = Math.exp(x);

	return (y - 1 / y) / 2;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy