Module:Testing

From RuneTails
Revision as of 02:05, 13 February 2025 by NES (talk | contribs)

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

local p = {}

function p.getPath(frame)
    local url = frame.args[1] or ""
    return url:gsub("^https?://[^/]+/", "")
end

return p