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

7 lines
196 B
Lua

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