Skip to content

Instantly share code, notes, and snippets.

@jazio
Last active April 8, 2016 11:56
Show Gist options
  • Save jazio/8afeb1e470453a72f2cf to your computer and use it in GitHub Desktop.
Save jazio/8afeb1e470453a72f2cf to your computer and use it in GitHub Desktop.
Make sure a JSON is valid
// Make sure that the media JSON is valid.
try {
parsed_json = JSON.parse(unparsed_json);
}
catch (err) {
parsed_json = null;
}
if (parsed_json) {
// Display its content
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment