UNPKG

96 BJavaScriptView Raw
1
2
3'use strict';
4
5module.exports = function isNumber(n) {
6 return n != null && !!(+n+1/1);
7};
8
9