There is uuid
but it's 32 chars long (36 if i include dash) but the requirement in my case is 30 chars long.
Is there any alternative for uuid?
There is uuid
but it's 32 chars long (36 if i include dash) but the requirement in my case is 30 chars long.
Is there any alternative for uuid?
You can use the plain bytes (16 bytes) and encode them using Base64 instead of hex (base 16). The result will be 24 bytes long.
Maybe this answer will help you: Javascript convert GUID in string format into Base64