JSONSelect icon indicating copy to clipboard operation
JSONSelect copied to clipboard

key name?

Open indieisaconcept opened this issue 12 years ago • 0 comments

Is it possible to retrieve a key name as opposed to a value?

e.g

FROM:

"resources": [{
    "params": {
        "one": "optional",
        "two": "optional",
        "three": "optional"
    }
}, {
    "params": {
        "four": "optional",
        "five": "optional",
        "six": "optional"
    }
}]

TO:


[
    "one",
    "two",
    "three",
    "four",
    "five",
    "six"
]

indieisaconcept avatar Nov 23 '13 14:11 indieisaconcept