Files
CHOMPStation2/code/_compatibility/509/_JSON.dm
Yoshax 8be10d96dd Ports Byond 510 preperations from Bay
Updates comment

Updates supply file
2016-03-14 18:21:44 +00:00

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