Skip to content

Instantly share code, notes, and snippets.

@elgervb
Created April 9, 2018 10:29
Show Gist options
  • Save elgervb/fea7593279fe49a8eb675b4089f7782e to your computer and use it in GitHub Desktop.
Save elgervb/fea7593279fe49a8eb675b4089f7782e to your computer and use it in GitHub Desktop.
JSON.stringigy with try...catch
const stringify = JSON.stringify;
JSON.stringify = (data) => {
try {
return stringify(data);
} catch(ex) {
debugger;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment