mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
12 lines
242 B
Plaintext
12 lines
242 B
Plaintext
/*
|
|
n_Json v11.3.21
|
|
*/
|
|
|
|
/proc/json2list(json)
|
|
var/static/json_reader/_jsonr = new()
|
|
return _jsonr.ReadObject(_jsonr.ScanJson(json))
|
|
|
|
/proc/list2json(list/L)
|
|
var/static/json_writer/_jsonw = new()
|
|
return _jsonw.WriteObject(L)
|