util.import: Explicitly export the global import function [luacheck]

This commit is contained in:
Kim Alvefur 2018-03-07 19:22:07 +01:00
parent 13a78a9463
commit 1660775b98

View file

@ -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 = {};