mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
13 lines
270 B
Lua
13 lines
270 B
Lua
|
|
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
|