Files
30-seconds-of-code/node_modules/graphql/jsutils/isNullish.mjs
2019-08-20 15:52:05 +02: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;
}