UNPKG

@azure/msal-common

Version:
22 lines (20 loc) 591 B
/*! @azure/msal-common v15.7.0 2025-05-30 */ 'use strict'; /* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ async function getClientAssertion(clientAssertion, clientId, tokenEndpoint) { if (typeof clientAssertion === "string") { return clientAssertion; } else { const config = { clientId: clientId, tokenEndpoint: tokenEndpoint, }; return clientAssertion(config); } } export { getClientAssertion }; //# sourceMappingURL=ClientAssertionUtils.mjs.map