File

util/import.lua @ 468:ab49cb6d0e92

Moved incoming c2s presence handling from stanza_router to presencemanager
author Waqas Hussain <waqas20@gmail.com>
date Sat, 29 Nov 2008 08:25:34 +0500
parent 49:1cd2a8db392d
child 519:cccd610a0ef9
line wrap: on
line source


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