fix: codefactor recommendation

This commit is contained in:
Deepak Patil 2022-12-17 00:56:14 +05:30
parent 3f42214ca9
commit 133923b905
No known key found for this signature in database
GPG key ID: 72C2703D0D120C3D

View file

@ -63,7 +63,7 @@ class JsHunter(private val hunterJS: String) {
var k = "" var k = ""
while (j > 0) { while (j > 0) {
k = i[(j % f).toInt()] + k k = i[(j % f).toInt()] + k
j = (j - (j % f)) / f j = (j - j % f) / f
} }
return k.toIntOrNull() ?: 0 return k.toIntOrNull() ?: 0
} }