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

org.hisrc.jsonix.Jsonix.Util.NumberUtils.js Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
Jsonix.Util.NumberUtils = {
	isInteger : function(value) {
		return Jsonix.Util.Type.isNumber(value) && ((value % 1) === 0);
	}
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy