@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
15 lines • 399 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
export function checkURL(testString) {
return new URL(testString);
}
export function sanitizeEndpoint(url) {
return new URL(url).href.replace(/\/$/, "");
}
/**
* @internal
*/
export function normalizeEndpoint(endpoint) {
return endpoint.replace(/\s+/g, "").toLowerCase();
}
//# sourceMappingURL=checkURL.js.map