export function notEmpty( value: TValue | null | undefined ): value is TValue { return value !== null && value !== undefined; }