dev

This module was made as a sandbox for the user Puxlit. This documentation is kept to prevent redlinks.


local p = {}

function p.main(f0)
    local f1 = f0:getParent()
    local f2 = f1:getParent()
    local args = f2.args
    local Type = args.Type
    return Type and Type or 'no Type'
end

return p