JSONP

by Audeuro
Easy to use JSON parser [More]
To download this library for your Linux/Mac installation, enter this on your command line:

DreamDownload byond://Audeuro.JSONP##version=3

Emulator users, in the BYOND pager go to File | Open Location and enter this URL:

byond://Audeuro.JSONP##version=3

56 downloads
Version 3
Date added: Mar 6 2014
Last updated: Mar 11 2014
0 fans
An easy to use JSON parser that should fully implement the JSON standards.

Example usage:

mob/Login()
var/jsonStr = "{\"member_id\": \"This is it!\"}"
var/JSONP/parser = new
var/JSON/j = parser.Parse(jsonStr)
world << "Member ID? [j.Value("member_id")]"


NOTE: Still a work in progress