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

7 lines
196 B
Lua
Raw Normal View History

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