Module:User:Huhu9001/001

This is the current revision of this page, as edited by imported>Huhu9001 at 13:22, 10 February 2020. The present address (URL) is a permanent link to this version.

(diff) ← Older 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