UNPKG

dicom-microscopy-viewer-changed

Version:
8 lines (6 loc) 184 B
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); }