Sb forum speech.png DiscordLink.png FacebookLink.png RedditLink.png SteamLink.png TwitterLink.png YoutubeLink.png

Module:SB Infobox Begin

From Starbase wiki
Revision as of 03:44, 26 May 2021 by DustyFB (talk | contribs)
Jump to navigation Jump to search

Documentation for this module may be created at Module:SB Infobox Begin/doc

local getArgs = require('Module:Arguments').getArgs
local p = {}

function p.main(frame)
	local args = getArgs(frame)
	return p._main(args)
end

function p._main(args)
	local output = ""
	local n = 0
	for _ in ipairs(args) do 
		n=_
	end
	local t = {}
	for i=1,n do
		t[i] = tostring(args[i])
	end
	return table.concat(t,"")
end

return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.