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