Module:ModuleUniqueStatTable

From The First Descendant Wiki
Revision as of 00:54, 5 June 2024 by Software2 (talk | contribs) (Created page with "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")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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