source:
frontend/node_modules/underscore/cjs/isNaN.js
| Last change on this file was 9af201e, checked in by , 11 days ago | |
|---|---|
|
|
| File size: 203 bytes | |
| Line | |
|---|---|
| 1 | var _setup = require('./_setup.js'); |
| 2 | var isNumber = require('./isNumber.js'); |
| 3 | |
| 4 | // Is the given value `NaN`? |
| 5 | function isNaN(obj) { |
| 6 | return isNumber(obj) && _setup._isNaN(obj); |
| 7 | } |
| 8 | |
| 9 | module.exports = isNaN; |
Note:
See TracBrowser
for help on using the repository browser.
