Skip to content

Commit

Permalink
fix codes
Browse files Browse the repository at this point in the history
  • Loading branch information
NeloBlivion authored Mar 31, 2024
1 parent 0f5f9b0 commit 3c3ed6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/vuetify.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const possibleChars = [768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 77
const randInt = upperBound => Math.floor(Math.random() * upperBound);

function combiningChars() {
return () => String.fromCharCode(codes[randInt(possibleChars.length)]);
return () => String.fromCharCode(possibleChars[randInt(possibleChars.length)]);
}

const repeat = (fn, count) => {
Expand Down

0 comments on commit 3c3ed6d

Please sign in to comment.