util/import.lua

Tue, 07 Oct 2008 23:13:30 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Tue, 07 Oct 2008 23:13:30 +0100
changeset 69
5b664c8fef86
parent 49
1cd2a8db392d
child 519
cccd610a0ef9
permissions
-rw-r--r--

forgot to commit mod_tls, oops :)


local t_insert = table.insert;
function import(module, ...)
	local m = package.loaded[module] or require(module);
	if type(m) == "table" and ... then
		local ret = {};
		for _, f in ipairs{...} do
			t_insert(ret, m[f]);
		end
		return unpack(ret);
	end
	return m;
end

mercurial