Jump to content

Module:Module sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Jojoseis (talk | contribs) at 12:33, 10 July 2024. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local functions = {}

function functions.inputToHighlightedString(frame)
	local input = ''
	for key, value in pairs(frame.args) do
			input = input .. tostring(key) .. value
	end
	eror(input)
end

function functions.inputValuesToHighlightedString(frame)
	local input = ''
	for key, value in pairs(frame.args) do
			input = input .. value
	end
	error(input)
end

return functions