Jump to content

Module:Data

From Apogea Wiki

Documentation for this module may be created at Module:Data/doc

local p = {}

function p.capture(frame)
    -- Accessing frame.args[1] forces template expansion
    -- Side effects (Cargo storage, Lua state) still happen
    local _ = frame.args[1]
    return ""
end

return p