mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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 unpack = table.unpack or unpack; --luacheck: ignore 113 143
|
||||||
local t_insert = table.insert;
|
local t_insert = table.insert;
|
||||||
function import(module, ...)
|
function _G.import(module, ...)
|
||||||
local m = package.loaded[module] or require(module);
|
local m = package.loaded[module] or require(module);
|
||||||
if type(m) == "table" and ... then
|
if type(m) == "table" and ... then
|
||||||
local ret = {};
|
local ret = {};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue