1 2 3 4 5 6 7
"use strict"; var isInteger = require("./is-integer"); module.exports = function (num) { return isInteger(num) && (num >= 0); };