Skip to content

Instantly share code, notes, and snippets.

@ihgrant
Created August 11, 2016 22:26
Show Gist options
  • Save ihgrant/c522b5b2619b0ae656eb49302e18979e to your computer and use it in GitHub Desktop.
Save ihgrant/c522b5b2619b0ae656eb49302e18979e to your computer and use it in GitHub Desktop.
export function tryparseJson(jsonstring) {
try {
return JSON.parse(jsonstring);
} catch (e) {
return false;
}
}
import {tryParseJson} from './helpers'
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment