It’s preferable that you keep constant values directly in a variable rather than storing in a function to return a copy each time.
module.Admins = {1, 12, etc} over function module.Admins()...
It’s preferable that you keep constant values directly in a variable rather than storing in a function to return a copy each time.
module.Admins = {1, 12, etc} over function module.Admins()...