All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.modules.isNaN.js Maven / Gradle / Ivy

The newest version!
import { _isNaN } from './_setup.js';
import isNumber from './isNumber.js';

// Is the given value `NaN`?
export default function isNaN(obj) {
  return isNumber(obj) && _isNaN(obj);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy