Namespace: Urls

Urls

Source:

Members

(protected, static) UrisonParser

A parser to translate a Rison string such as '(key1:value,key2:!t,key3:!(!f,42,!n))' into its JSON object/array representation {key1 : 'value', key2 : true, key3 : [false, 42, null]}. This is a helper class for the public Urison class below.

Source:
See:
Example
new UrisonParser(error => { console.error(error); });