refactor: use more charecter ID for env

This commit is contained in:
nivedin
2024-03-07 19:09:12 +05:30
committed by Andrew Bastin
parent 63cbaabf07
commit 5f9f9addaf
7 changed files with 21 additions and 16 deletions

View File

@@ -0,0 +1,3 @@
export const uniqueID = (length = 16) => {
return Math.random().toString(36).substring(2, length)
}