This repository has been archived on 2025-12-11. You can view files and clone it, but cannot push or open issues or pull requests.

13 lines
317 B
Lua

math.randomseed(os.time())
local urlAlphabet = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"
function GenerateNanoID(size)
local id = ""
for _ = 1, size do
local randomIndex = math.random(64)
id = id .. urlAlphabet:sub(randomIndex,randomIndex)
end
return id
end