JSONP

by Audeuro
Easy to use JSON parser
ID:1512491
 
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