Current section

Files

Jump to
excessibility assets node_modules underscore cjs isNaN.js
Raw

assets/node_modules/underscore/cjs/isNaN.js

var _setup = require('./_setup.js');
var isNumber = require('./isNumber.js');
// Is the given value `NaN`?
function isNaN(obj) {
return isNumber(obj) && _setup._isNaN(obj);
}
module.exports = isNaN;