Skip to content

Commit

Permalink
refactor(lint): removed extra semi
Browse files Browse the repository at this point in the history
  • Loading branch information
CorentinTh committed May 10, 2024
1 parent 2852c30 commit 33e5294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/token-generator/token-generator.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function createToken({
withLowercase ? 'abcdefghijklmopqrstuvwxyz' : '',
withNumbers ? '0123456789' : '',
withSymbols ? '.,;:!?./-"\'#{([-|\\@)]=}*+' : '',
].join(''); ;
].join('');

return shuffleString(allAlphabet.repeat(length)).substring(0, length);
}

0 comments on commit 33e5294

Please sign in to comment.