jsoncfg = {
save = function(data, path)
if doesFileExist(path) then os.remove(path) end
if type(data) ~= 'table' then return end
local f = io.open(path, 'a+')
local writing_data = encodeJson(data)
f:write(writing_data)
f:close()
end,
load = function(path)
if doesFileExist(path) then
local f = io.open(path, 'a+')
local data = decodeJson(f:read('*a'))
f:close()
return data
end
end
}