mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
18 lines
337 B
Plaintext
18 lines
337 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/static/json_writer/_jsonw = new()
|
|
return _jsonw.write(L)
|
|
|
|
list2json_usecache(list/L)
|
|
var/static/json_writer/_jsonw = new()
|
|
_jsonw.use_cache = 1
|
|
return _jsonw.write(L)
|