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 9773c5e commit 089a3e4Copy full SHA for 089a3e4
src/Service.js
@@ -140,7 +140,7 @@ Service_.prototype.setCodeVerififer = function(codeVerifier) {
140
*/
141
Service_.prototype.generateCodeVerifier = function() {
142
const rawBytes = [];
143
- for (let i = 0; i < 32; ++i) {
+ for (var i = 0; i < 32; ++i) {
144
const r = Math.floor(Math.random() * 255);
145
rawBytes[i] = r;
146
}
0 commit comments