json-pretty-html icon indicating copy to clipboard operation
json-pretty-html copied to clipboard

Nested array not resolved correctly

Open bigopon opened this issue 7 years ago • 0 comments

test:

var json = {
  "tags": ["cold", "ice", ["fire", "water"]]
};
var prettyHtml = require('json-pretty-html').default;
var html = prettyHtml(json, json.dimensions);
{
  "tags": [
    "cold",
    "ice",
    {
      "0": "fire",
      "1": "water"
    }
  ]
}

bigopon avatar May 11 '18 04:05 bigopon