source: trip-planner-front/node_modules/flatted/types.d.ts@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 476 bytes
Line 
1/**
2 * Fast and minimal circular JSON parser.
3 * logic example
4```js
5 var a = [{one: 1}, {two: '2'}];
6a[0].a = a;
7// a is the main object, will be at index '0'
8// {one: 1} is the second object, index '1'
9// {two: '2'} the third, in '2', and it has a string
10// which will be found at index '3'
11
12Flatted.stringify(a);
13// [["1","2"],{"one":1,"a":"0"},{"two":"3"},"2"]
14// a[one,two] {one: 1, a} {two: '2'} '2'
15```
16 */
17declare const Flatted: typeof JSON;
18
19export = Flatted;
Note: See TracBrowser for help on using the repository browser.