Documentation for this module may be created at Module:ModuleUniqueStatTable/doc
local p = {}
function p.processData(frame)
local property1 = frame.args.property1 or ""
local property2 = frame.args.property2 or ""
-- Process the data
local result = "Property1: " .. property1 .. ", Property2: " .. property2
return result
end
return p