Lua: reference global symbols for global libs
(Picked this trick up from Oleg) Normally, you can access the table and
string helper methods by "table" and "string", respectively. However,
it's possible that these symbols can be overwritten. It's a
slightly safer bet to reference these libraries from the global
_G symbol instead, since that is a lot less likely to get
clobbered.