mirror of
https://github.com/CorentinTh/it-tools.git
synced 2024-12-26 09:42:28 +08:00
refactor(lint): removed extra semi
This commit is contained in:
parent
2852c30e1f
commit
33e5294a94
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ export function createToken({
|
|||
withLowercase ? 'abcdefghijklmopqrstuvwxyz' : '',
|
||||
withNumbers ? '0123456789' : '',
|
||||
withSymbols ? '.,;:!?./-"\'#{([-|\\@)]=}*+' : '',
|
||||
].join(''); ;
|
||||
].join('');
|
||||
|
||||
return shuffleString(allAlphabet.repeat(length)).substring(0, length);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue