function _M.table_len()

in lib/shenyu/register/core/utils.lua [30:37]


function _M.table_len(args)
    
    local n = 0
    if args then
        n = #args
    end
    return n
end