UNPKG

373 BJavaScriptView Raw
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT license.
3import { createDefaultHttpClient } from "@azure/core-rest-pipeline";
4let cachedHttpClient;
5export function getCachedDefaultHttpClient() {
6 if (!cachedHttpClient) {
7 cachedHttpClient = createDefaultHttpClient();
8 }
9 return cachedHttpClient;
10}
11//# sourceMappingURL=cachedClient.js.map
\No newline at end of file