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

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

The newest version!

// Math.sign
Math.sign = function sign(x) {
	return !(x = Number(x)) ? x : x > 0 ? 1 : -1;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy