We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 824f515 commit 83ffc5cCopy full SHA for 83ffc5c
dist/OAuth2.gs
@@ -233,7 +233,7 @@ Service_.prototype.setCodeVerififer = function(codeVerifier) {
233
*/
234
Service_.prototype.generateCodeVerifier = function() {
235
const rawBytes = [];
236
- for (let i = 0; i < 32; ++i) {
+ for (var i = 0; i < 32; ++i) {
237
const r = Math.floor(Math.random() * 255);
238
rawBytes[i] = r;
239
}
0 commit comments