(r: string)
| 254 | * this simply adds array markup around the string before parsing. |
| 255 | */ |
| 256 | export function decode_array(r: string) { |
| 257 | return decode('!(' + r + ')'); |
| 258 | } |
| 259 | |
| 260 | export type JSONValue = string | number | boolean | null | undefined | {[x: string]: JSONValue} | Array<JSONValue>; |
| 261 |