()
| 103 | // --------------------------------------------------------------------------- |
| 104 | |
| 105 | export const createPkceCodeVerifier = (): string => oauth.generateRandomCodeVerifier(); |
| 106 | |
| 107 | export const createPkceCodeChallenge = (verifier: string): Promise<string> => |
| 108 | oauth.calculatePKCECodeChallenge(verifier); |
no outgoing calls
no test coverage detected