LookAtMySuitBot/js/node_modules/@azure/msal-common/dist/authority/OpenIdConfigResponse.mjs

16 lines
503 B
JavaScript
Raw Normal View History

2023-12-24 20:08:39 -05:00
/*! @azure/msal-common v14.4.0 2023-11-07 */
'use strict';
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
function isOpenIdConfigResponse(response) {
return (response.hasOwnProperty("authorization_endpoint") &&
response.hasOwnProperty("token_endpoint") &&
response.hasOwnProperty("issuer") &&
response.hasOwnProperty("jwks_uri"));
}
export { isOpenIdConfigResponse };
//# sourceMappingURL=OpenIdConfigResponse.mjs.map