Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

isNaN.js 195B

12345678910
  1. define(['./_setup', './isNumber'], function (_setup, isNumber) {
  2. // Is the given value `NaN`?
  3. function isNaN(obj) {
  4. return isNumber(obj) && _setup._isNaN(obj);
  5. }
  6. return isNaN;
  7. });