ship-gis/node_modules/underscore/modules/isNaN.js

8 lines
184 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
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);
}