Skip to content

Instantly share code, notes, and snippets.

@euank
Created May 21, 2014 03:22
Show Gist options
  • Select an option

  • Save euank/46d068f4315693f71f04 to your computer and use it in GitHub Desktop.

Select an option

Save euank/46d068f4315693f71f04 to your computer and use it in GitHub Desktop.
var fs = require('fs');
try {
fs.readFile('/tmp/kek.not-json', function(err, data) {
JSON.parse(data);/* exception, uncaught */
})
} catch(ex) {
console.log("I don't print. It instead errors out with an exception");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment