1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

lint fixes

This commit is contained in:
Kyle Spearrin
2017-07-14 15:09:41 -04:00
parent 3a8f149008
commit cf850838b5
3 changed files with 11 additions and 10 deletions

View File

@@ -26,7 +26,7 @@ function initTotpService() {
bytes[i / 2] = parseInt(s.substr(i, 2), 16);
}
return bytes;
}
};
var buff2hex = function (buff) {
var bytes = new Uint8Array(buff);
@@ -36,7 +36,7 @@ function initTotpService() {
hex.push((bytes[i] & 0xF).toString(16));
}
return hex.join('');
}
};
var b32tohex = function (s) {
s = s.toUpperCase();