e0615fa867
📁 Changed TDrive root folder
8 lines
214 B
TypeScript
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;
|
|
};
|