exports.ISODD = function(number) {
  return (Math.floor(Math.abs(number)) & 1) ? true : false;
};