mirror of
https://github.com/Azure/setup-helm.git
synced 2025-09-08 04:56:32 +00:00
8 lines
184 B
JavaScript
8 lines
184 B
JavaScript
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);
|
|
}
|