UNPKG

@typespec/ts-http-runtime

Version:

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

21 lines 650 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import { Platform } from "react-native"; /** * @internal */ export function getHeaderName() { return "x-ms-useragent"; } /** * @internal */ export async function setPlatformSpecificData(map) { var _a; if ((_a = Platform.constants) === null || _a === void 0 ? void 0 : _a.reactNativeVersion) { const { major, minor, patch } = Platform.constants.reactNativeVersion; map.set("react-native", `${major}.${minor}.${patch}`); } map.set("OS", `${Platform.OS}-${Platform.Version}`); } //# sourceMappingURL=userAgentPlatform-react-native.mjs.map