UNPKG

85 BJavaScriptView Raw
1const isNumber = num => !isNaN(num) && num !== null;
2
3module.exports = { isNumber };