UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

9 lines (7 loc) 192 B
// @flow strict /** * Returns true if a value is undefined, or NaN. */ export default function isInvalid(value: mixed): boolean %checks { return value === undefined || value !== value; }