Files
SoundScopes ff68c9e1f3 Scopes updates all merged and stuff
A lot of these will probably get edited again
2015-05-14 21:02:12 +01:00

13 lines
263 B
Plaintext

/*
n_Json v11.3.21
*/
proc
json2list(json)
var/static/json_reader/_jsonr = new()
return _jsonr.ReadObject(_jsonr.ScanJson(json))
list2json(list/L, var/cached_data = null)
var/static/json_writer/_jsonw = new()
return _jsonw.WriteObject(L, cached_data)