blob: fd2778be63d763d9c148e7712f089dc4964dae9a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
local jsoncheat = {}
function jsoncheat.filename(name)
return name .. ".json"
end
function jsoncheat.conv_cheat(data)
local json = require("json")
return json.parse(data)
end
return jsoncheat
|