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 22509ce commit 1c1ff25Copy full SHA for 1c1ff25
lib/utils.mjs
@@ -30,7 +30,7 @@ export function httpContent (csKey, contentLength = 15) {
30
}
31
const contents = []
32
for (let i = 0; i < contentLength; ++i) {
33
- const idx = ((i * keySeed * contentSeed) % 26) + 65
+ const idx = ((i * keySeed * contentSeed) % 26) + 97
34
contents.push(String.fromCharCode(idx))
35
36
const content = contents.join('')
0 commit comments