1export function notEmpty<TValue>( 2 value: TValue | null | undefined, 3): value is TValue { 4 return value !== null && value !== undefined; 5}