Skip to content

Commit

Permalink
fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
prusnak committed Sep 7, 2024
1 parent 7213d5c commit 239bfb6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion static/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,8 @@ new Vue({
generateKeys: function () {
var self = this
const genRandomHexBytes = size =>
crypto.getRandomValues(new Uint8Array(size))
crypto
.getRandomValues(new Uint8Array(size))
.reduce((acc, i) => acc + i.toString(16).padStart(2, '0'), '')

debugcard =
Expand Down

0 comments on commit 239bfb6

Please sign in to comment.