blob: 22db67edb30168d214e11cfa1ee69ffa9b1f55e9 [file] [log] [blame]
// 20.1.2.3 Number.isInteger(number)
var isObject = require('./_is-object')
, floor = Math.floor;
module.exports = function isInteger(it){
return !isObject(it) && isFinite(it) && floor(it) === it;
};