mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.import: Explicitly export the global import function [luacheck]
This commit is contained in:
parent
13a78a9463
commit
1660775b98
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
|||
|
||||
local unpack = table.unpack or unpack; --luacheck: ignore 113 143
|
||||
local t_insert = table.insert;
|
||||
function import(module, ...)
|
||||
function _G.import(module, ...)
|
||||
local m = package.loaded[module] or require(module);
|
||||
if type(m) == "table" and ... then
|
||||
local ret = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue