7 lines
200 B
Lua
7 lines
200 B
Lua
fT = {}
|
|
function fres(p)
|
|
local F = (p:match("(%a-):") or p:match("/?(%a-)/"))
|
|
local P = (p:match("%a-:(.+)") or p:match("/?%a-/(.+)"))
|
|
if fT[F] ~= nil then return fT[F],P else return false end
|
|
end
|