()
| 173 | // --------------------------------------------------------------------------- |
| 174 | |
| 175 | export const createPkceCodeVerifier = (): string => oauth.generateRandomCodeVerifier(); |
| 176 | |
| 177 | export const createPkceCodeChallenge = (verifier: string): Promise<string> => |
| 178 | oauth.calculatePKCECodeChallenge(verifier); |
no outgoing calls
no test coverage detected