Files
Job_App/node_modules/graphql/jsutils/isNullish.mjs
2025-03-28 12:30:19 +11:00

7 lines
175 B
JavaScript

/**
* Returns true if a value is null, undefined, or NaN.
*/
export default function isNullish(value) {
return value === null || value === undefined || value !== value;
}