Parsley Parser
Hi,
I have just noticed that new extension is out.
JSON Parser Parsley this time.
Does anyone know what are the benefits using this extension compare to traditional way of having json object in JSON property a accessing individual nodes through dots or square brackets?
i.e.
var resultJson = me.getResultsAsJson();
var lastTimestamp = resultJson.timestamp;
me.lastTestDateTime = parseDateISO(lastTimestamp);
// choose only DATA
var arr = resultJson.data;
and so on...

