1.0.2 • Published 8 years ago

unfold-json v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

Unfold json

This module is used to show json on website.

Use

  import UnfoldJson from 'unfold-json';

  let data = {"key":"value","items":[{"key":"value"},{"key":"value"}]}
  document.getElementById("data").innerHTML = UnfoldJson(JSON.stringify(data));

and you can show this json on your website like this:

  {
      "key": "value",
      "items": [
          {
              "key": "value"
          },
          {
              "key": "value"
          }
      ]
  }

I usees6, but you can also use require to import module.

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago