@typespec/ts-http-runtime
Version:
Isomorphic client library for making HTTP requests in node.js and browser.
12 lines • 337 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/**
* Browser and React Native runtimes handle FormData natively,
* so no conversion from FormData to FormDataMap is needed.
*
* @internal
*/
export function convertBodyToFormDataMap(_body) {
return undefined;
}
//# sourceMappingURL=formData-web.mjs.map