UNPKG

@catladder/pipeline

Version:

Panter workflow for cloud CI/CD and DevOps

5 lines (4 loc) 164 B
export const removeUndefined = <T extends object>(obj: T): T => Object.fromEntries( Object.entries(obj).filter(([, value]) => value !== undefined), ) as T;