Jump to content

Module:User:Huhu9001/001

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Huhu9001 (talk | contribs) at 12:22, 10 February 2020. The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

local export = {}

function export.show(frame)
	for _, f in ipairs(package.loaders) do
		local ff = f('Module:User:Huhu9001/000')
		if type(ff) == 'function' then
			ff()
			break
		end
	end
	return global_count or '(nil)'
end

for _, f in ipairs(package.loaders) do
	local ff = f('Module:User:Huhu9001/000')
	if type(ff) == 'function' then
		export.load = ff
		break
	end
end

return export