remove unnecessary semicolon

This commit is contained in:
zhu0823 2024-04-19 10:59:38 +08:00
parent 23f82d956a
commit 33ed396146

View File

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