mirror of
https://github.com/Azure/setup-helm.git
synced 2026-07-06 16:31:38 +00:00
a517f2ff65
Co-authored-by: taakleton <taakleton@users.noreply.github.com>
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);
|
|
}
|