Files
workavia-drive/tdrive/backend/node/src/utils/coalesce.ts
T
Montassar Ghanmy e0615fa867 📁 Changed TDrive root folder (#16)
📁 Changed TDrive root folder
2023-04-11 10:04:29 +01:00

8 lines
214 B
TypeScript

// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/explicit-module-boundary-types
export default (a: any, b: any): any => {
if (a === undefined) {
return b;
}
return a;
};