Skip to content

Instantly share code, notes, and snippets.

@nitayneeman
Created December 13, 2018 21:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nitayneeman/129879f9d76b06ff892d67800adc94b5 to your computer and use it in GitHub Desktop.
Save nitayneeman/129879f9d76b06ff892d67800adc94b5 to your computer and use it in GitHub Desktop.
function isValidJSON(text) {
try {
JSON.parse(text);
return true;
} catch {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment