bergere-enchantee / src /lib /utils /filterNullish.ts
coyotte508's picture
coyotte508 HF staff
✨ Load pictures
fa79853
raw history blame
No virus
139 Bytes
export function filterNullish<T>(arr: (T | null | undefined)[]): T[] {
return arr.filter((x): x is T => x !== undefined && x !== null);
}