mirror of
https://github.com/timvisee/send.git
synced 2026-04-23 22:34:43 -04:00
support v 50 and 51 by not allowing const in loops
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
function arrayToHex(iv) {
|
||||
let hexStr = '';
|
||||
// eslint-disable-next-line prefer-const
|
||||
for (let i in iv) {
|
||||
if (iv[i] < 16) {
|
||||
hexStr += '0' + iv[i].toString(16);
|
||||
|
||||
Reference in New Issue
Block a user