I have a file lets call it utilities.lua it needs to be required by quite a few other files sometimes these files are inside other files. For example
fileB.lua is required inside fileA.lua and both of them need the utilities.lua…but sometimes fileB is loaded on its own as well as fileA on its own. Is it better to require utilities.lua locally in each file which might lead to it be required duplicate times or is it better to require it globally in like the main.lua?