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

7 lines
200 B
Lua
Raw Normal View History

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