.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / flatted / README.md
index 844159339136687a7d1843c36f70bf4fdb21eb9c..0c1627f7d2dda838cd26fc2226533366d3740135 100644 (file)
@@ -1,9 +1,15 @@
 # flatted
 
-![Downloads](https://img.shields.io/npm/dm/flatted.svg) [![Coverage Status](https://coveralls.io/repos/github/WebReflection/flatted/badge.svg?branch=master)](https://coveralls.io/github/WebReflection/flatted?branch=master) [![Build Status](https://travis-ci.org/WebReflection/flatted.svg?branch=master)](https://travis-ci.org/WebReflection/flatted) [![License: ISC](https://img.shields.io/badge/License-ISC-yellow.svg)](https://opensource.org/licenses/ISC) ![WebReflection status](https://offline.report/status/webreflection.svg)
+[![Downloads](https://img.shields.io/npm/dm/flatted.svg)](https://www.npmjs.com/package/flatted) [![Coverage Status](https://coveralls.io/repos/github/WebReflection/flatted/badge.svg?branch=master)](https://coveralls.io/github/WebReflection/flatted?branch=master) [![Build Status](https://travis-ci.org/WebReflection/flatted.svg?branch=master)](https://travis-ci.org/WebReflection/flatted) [![License: ISC](https://img.shields.io/badge/License-ISC-yellow.svg)](https://opensource.org/licenses/ISC) ![WebReflection status](https://offline.report/status/webreflection.svg)
+
+![snow flake](./flatted.jpg)
+
+<sup>**Social Media Photo by [Matt Seymour](https://unsplash.com/@mattseymour) on [Unsplash](https://unsplash.com/)**</sup>
 
 A super light (0.5K) and fast circular JSON parser, directly from the creator of [CircularJSON](https://github.com/WebReflection/circular-json/#circularjson).
 
+Now available also for **[PHP](./php/flatted.php)**.
+
 ```js
 npm i flatted
 ```
@@ -12,10 +18,10 @@ Usable via [CDN](https://unpkg.com/flatted) or as regular module.
 
 ```js
 // ESM
-import {parse, stringify} from 'flatted/esm';
+import {parse, stringify} from 'flatted';
 
 // CJS
-const {parse, stringify} = require('flatted/cjs');
+const {parse, stringify} = require('flatted');
 
 const a = [{}];
 a[0].a = a;