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