Files
turnosxpress/txclient/src/app/helpers/IsNull.ts
T
2026-07-16 20:48:43 -03:00

4 lines
115 B
TypeScript

export function isNull<Type>(data: Type | null, returnValue: Type): Type {
return data ? data : returnValue;
}