export const addUsername = (mongoUrlArg: string, usernameArg: string): string => { return mongoUrlArg.replace('', usernameArg); }; export const addPassword = (mongoUrlArg: string, passwordArg: string): string => { return mongoUrlArg.replace('', passwordArg); };