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

polyfills.Number.isInteger.raw.js Maven / Gradle / Ivy

The newest version!

// Number.isInteger
Number.isInteger = Number.isInteger || function (value) {
	return typeof value === "number" &&
		isFinite(value) &&
		Math.floor(value) === value;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy