$.is-integer.js 207 Bytes Raw Blame History Permalink 1 2 3 4 5 6 // 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; };