4 lines
143 B
TypeScript
4 lines
143 B
TypeScript
|
export const addPassword = (mongoUrlArg: string, passwordArg: string): string => {
|
||
|
return mongoUrlArg.replace('<PASSWORD>', passwordArg);
|
||
|
};
|