mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-01-14 03:18:53 +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' : '',
|
withLowercase ? 'abcdefghijklmopqrstuvwxyz' : '',
|
||||||
withNumbers ? '0123456789' : '',
|
withNumbers ? '0123456789' : '',
|
||||||
withSymbols ? '.,;:!?./-"\'#{([-|\\@)]=}*+' : '',
|
withSymbols ? '.,;:!?./-"\'#{([-|\\@)]=}*+' : '',
|
||||||
].join(''); ;
|
].join('');
|
||||||
|
|
||||||
return shuffleString(allAlphabet.repeat(length)).substring(0, length);
|
return shuffleString(allAlphabet.repeat(length)).substring(0, length);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue