package.loaded
A table used by require
to control which modules are already loaded. When you require a module modname
and package.loaded[modname]
is not false, require
simply returns the value stored there.
This variable is only a reference to the real table; assignments to this variable do not change the table used by require
.
Please login to continue.