refactor(lint): removed extra semi

This commit is contained in:
Corentin Thomasset 2024-05-10 12:07:50 +02:00
parent 2852c30e1f
commit 33e5294a94
No known key found for this signature in database
GPG Key ID: DBD997E935996158

View File

@ -20,7 +20,7 @@ export function createToken({
withLowercase ? 'abcdefghijklmopqrstuvwxyz' : '',
withNumbers ? '0123456789' : '',
withSymbols ? '.,;:!?./-"\'#{([-|\\@)]=}*+' : '',
].join(''); ;
].join('');
return shuffleString(allAlphabet.repeat(length)).substring(0, length);
}