in src/utils/nonNull.ts [36:38]
export function isDefined<T>(data: T | undefined | null): data is T { return data !== null && data !== undefined; }