()
| 183 | // --------------------------------------------------------------------------- |
| 184 | |
| 185 | export const createPkceCodeVerifier = (): string => oauth.generateRandomCodeVerifier(); |
| 186 | |
| 187 | export const createPkceCodeChallenge = (verifier: string): Promise<string> => |
| 188 | oauth.calculatePKCECodeChallenge(verifier); |
no outgoing calls
no test coverage detected