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

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

The newest version!

// Math.cbrt
Math.cbrt = function cbrt(x) {
	var y = Math.pow(Math.abs(x), 1 / 3);

	return x < 0 ? -y : y;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy