OC-MultICE/modules/library/fs-min.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