UNPKG

underscore-es

Version:

javaScript's functional programming helper library for ES6 and beyond.

9 lines (7 loc) 209 B
// `_isNaN` : an object's function // -------------------------------- import _isNumber from './isNumber'; // Is the given value `NaN`? export default function (obj) { return _isNumber(obj) && isNaN(obj); }