org.hisrc.jsonix.Jsonix.Util.NumberUtils.js Maven / Gradle / Ivy
Jsonix.Util.NumberUtils = {
isInteger : function(value) {
return Jsonix.Util.Type.isNumber(value) && ((value % 1) === 0);
}
};
© 2015 - 2024 Weber Informatics LLC | Privacy Policy