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

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

The newest version!

// Math.trunc
Math.trunc = function trunc(x) {
	return x < 0 ? Math.ceil(x) : Math.floor(x);
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy