Se JSON, então analisar
function isJson(str) {
try {
let value = JSON.parse(str);
return value
} catch (e) {
return str;
}
}
Mysterious Mantis