@azure/data-tables
Version:
An isomorphic client library for the Azure Tables service.
16 lines • 500 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
export function isCosmosEndpoint(url) {
const parsedURL = new URL(url);
if (parsedURL.hostname.indexOf(".table.cosmosdb.") !== -1) {
return true;
}
if (parsedURL.hostname.indexOf(".table.cosmos.") !== -1) {
return true;
}
if (parsedURL.hostname === "localhost" && parsedURL.port !== "10002") {
return true;
}
return false;
}
//# sourceMappingURL=isCosmosEndpoint.js.map