fix(core): update

This commit is contained in:
2020-12-31 04:25:31 +00:00
parent bd20512b10
commit 2bd1741893
4 changed files with 13 additions and 13 deletions

View File

@ -25,5 +25,5 @@ export const createRandomString = (
* @param lengthArg the length of the crypto string
*/
export const createCryptoRandomString = (lengthArg: number): string => {
return plugins.nanoid(lengthArg);
return plugins.isounique.uni();
};