| OLD | NEW |
| 1 /* | 1 /* |
| 2 http://www.JSON.org/json2.js | 2 http://www.JSON.org/json2.js |
| 3 2008-11-19 | 3 2008-11-19 |
| 4 | 4 |
| 5 Public Domain. | 5 Public Domain. |
| 6 | 6 |
| 7 NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | 7 NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. |
| 8 | 8 |
| 9 See http://www.JSON.org/js.html | 9 See http://www.JSON.org/js.html |
| 10 | 10 |
| (...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 return typeof reviver === 'function' ? | 469 return typeof reviver === 'function' ? |
| 470 walk({'': j}, '') : j; | 470 walk({'': j}, '') : j; |
| 471 } | 471 } |
| 472 | 472 |
| 473 // If the text is not JSON parseable, then a SyntaxError is thrown. | 473 // If the text is not JSON parseable, then a SyntaxError is thrown. |
| 474 | 474 |
| 475 throw new SyntaxError('JSON.parse'); | 475 throw new SyntaxError('JSON.parse'); |
| 476 }; | 476 }; |
| 477 } | 477 } |
| 478 })(); | 478 })(); |
| OLD | NEW |