Documentation for this module may be created at Module:Actions/doc
local p = {}
function p.parseActions(frame)
local args = frame.args
if args[1] == nil then return "no defined" end
return "epic"
end
-- Set the __call metamethod to the default function
setmetatable(p, {
__call = function(_, frame)
return p.defaultFunction(frame)
end
})
return p