FT = {};
FT.Object = {};
function FT.Object.eval(str)
if type(str) ~= "string" then return end
local s = string.format("return %s", str)
return FT.Object.exec(s)
end
function FT.Object.exec(str)
if type(str) ~= "string" then return end
return load(str)()
end