mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
14 lines
251 B
Plaintext
14 lines
251 B
Plaintext
#if DM_VERSION < 510
|
|
/*
|
|
n_Json v11.3.21
|
|
*/
|
|
|
|
proc
|
|
json_decode(json)
|
|
var/static/json_reader/_jsonr = new()
|
|
return _jsonr.ReadObject(_jsonr.ScanJson(json))
|
|
|
|
json_encode(list/L)
|
|
var/static/json_writer/_jsonw = new()
|
|
return _jsonw.write(L)
|
|
#endif |