in src/tsUtils.ts [2:4]
export function isPresent<T>(t: T | undefined | null | void): t is T { return t !== undefined && t !== null; }