(r: string)
| 235 | * http://osteele.com/sources/openlaszlo/json |
| 236 | */ |
| 237 | export function decode(r: string) { |
| 238 | const p = new Parser(); |
| 239 | return p.parse(r); |
| 240 | } |
| 241 | |
| 242 | /** |
| 243 | * parse an o-rison string into a javascript structure. |
no test coverage detected