export function notEmpty()

in src/util.ts [10:12]


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