OC-MultICE/modules/library/fs-min.lua

7 lines
208 B
Lua
Raw Normal View History

fT = {}
function fres(p)
local fid = (p:match("(%a-):") or p:match("/?(%a-)/"))
local pt = (p:match("%a-:(.+)") or p:match("/?%a-/(.+)"))
if fT[fid] ~= nil then return fT[fid],pt else return false end
end