Skip to content

Instantly share code, notes, and snippets.

@jericbas
Created May 5, 2020 05:23
Show Gist options
  • Save jericbas/b85fc0c8175c81ba38aecef289963aaa to your computer and use it in GitHub Desktop.
Save jericbas/b85fc0c8175c81ba38aecef289963aaa to your computer and use it in GitHub Desktop.
Check if text is JSON or not
function isJson(str) {
try {
JSON.parse(str);
} catch (e) {
return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment