mirror of
https://github.com/Aurorastation/Aurora-Old.git
synced 2026-07-14 09:12:27 +01:00
ff68c9e1f3
A lot of these will probably get edited again
13 lines
263 B
Plaintext
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)
|