types.d.ts 476 B

12345678910111213141516171819
  1. /**
  2. * Fast and minimal circular JSON parser.
  3. * logic example
  4. ```js
  5. var a = [{one: 1}, {two: '2'}];
  6. a[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. Flatted.stringify(a);
  12. // [["1","2"],{"one":1,"a":"0"},{"two":"3"},"2"]
  13. // a[one,two] {one: 1, a} {two: '2'} '2'
  14. ```
  15. */
  16. declare const Flatted: typeof JSON;
  17. export = Flatted;