We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6df4cdb + e6ece6f commit d6b9bc3Copy full SHA for d6b9bc3
public/static/app.js
@@ -5,7 +5,7 @@ String.prototype.hexEncode = function() {
5
while (i < this.length) {
6
h = this.charCodeAt(i++).toString(16);
7
while (h.length < 2) {
8
- h = h;
+ h = "0" + h;
9
}
10
r += h;
11
0 commit comments