1👍
✅
you could use create another object using data of this object, that should be just a regular json
EX:
var charData = {};
Object.keys(actual_JSON).forEach((key) => {
charData[key] = actual_JSON[key]
})
try use charData
Source:stackexchange.com