mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-03-30 06:29:09 +01:00
7 lines
140 B
TypeScript
7 lines
140 B
TypeScript
export function normalizeArmEndpoint(uri: string): string {
|
|
if (uri && uri.slice(-1) !== "/") {
|
|
return `${uri}/`;
|
|
}
|
|
return uri;
|
|
}
|