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