source: frontend/node_modules/underscore/modules/isNaN.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 184 bytes
Line 
1import { _isNaN } from './_setup.js';
2import isNumber from './isNumber.js';
3
4// Is the given value `NaN`?
5export default function isNaN(obj) {
6 return isNumber(obj) && _isNaN(obj);
7}
Note: See TracBrowser for help on using the repository browser.