UNPKG

@klevu/core

Version:

Typescript SDK that simplifies development on Klevu backend. Klevu provides advanced AI-powered search and discovery solutions for online retailers.

10 lines (9 loc) 235 B
/** * Type safe version to remove nulls and undefineds from array * * usage: `myArray.filter(notEmpty)` * * @param value * @returns */ export declare function notEmpty<TValue>(value: TValue | null | undefined): value is TValue;