UNPKG

@azure/core-rest-pipeline

Version:

Isomorphic client library for making HTTP requests in node.js and browser.

10 lines 331 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import { createNodeHttpClient } from "./nodeHttpClient.js"; /** * Create the correct HttpClient for the current environment. */ export function createDefaultHttpClient() { return createNodeHttpClient(); } //# sourceMappingURL=defaultHttpClient.js.map