Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / flatted / types.d.ts
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/flatted/types.d.ts b/.config/coc/extensions/node_modules/coc-prettier/node_modules/flatted/types.d.ts
new file mode 100644 (file)
index 0000000..1233af2
--- /dev/null
@@ -0,0 +1,19 @@
+/**
+ * Fast and minimal circular JSON parser.
+ * logic example
+```js
+ var a = [{one: 1}, {two: '2'}];
+a[0].a = a;
+// a is the main object, will be at index '0'
+// {one: 1} is the second object, index '1'
+// {two: '2'} the third, in '2', and it has a string
+// which will be found at index '3'
+
+Flatted.stringify(a);
+// [["1","2"],{"one":1,"a":"0"},{"two":"3"},"2"]
+// a[one,two]    {one: 1, a}    {two: '2'}  '2'
+```
+ */
+declare const Flatted: typeof JSON;
+
+export = Flatted;