Skip to content

Commit 089a3e4

Browse files
authored
fix: Remove use of 'let' for Rhino compatibility
1 parent 9773c5e commit 089a3e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Service.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Service_.prototype.setCodeVerififer = function(codeVerifier) {
140140
*/
141141
Service_.prototype.generateCodeVerifier = function() {
142142
const rawBytes = [];
143-
for (let i = 0; i < 32; ++i) {
143+
for (var i = 0; i < 32; ++i) {
144144
const r = Math.floor(Math.random() * 255);
145145
rawBytes[i] = r;
146146
}

0 commit comments

Comments
 (0)