UNPKG

pp-is

Version:

Collection of methods for check

9 lines (8 loc) 243 B
/** * @function isNaN * @description - Checks if value is a valid Number from String. * @param { Any } value - Any Value * @return {boolean} */ const isNaN = ( value )=>(Number.isNaN( Number.parseInt(value))) export { isNaN as default }