|
|
|
|
|
by bryanrasmussen
530 days ago
|
|
I think the complaint here is they have a string, which even has the word string in the variable name, and they turn it into an object at the end. Hence references to Typescript. I suppose what is wanted is something like let parsedJSON = {} try {
parsedJSON = JSON.parse(susJsonString) } catch {
//maybe register problem with parsing.
} |
|