Skip to content

Instantly share code, notes, and snippets.

@cranic
Created January 6, 2014 12:50
Show Gist options
  • Select an option

  • Save cranic/8282459 to your computer and use it in GitHub Desktop.

Select an option

Save cranic/8282459 to your computer and use it in GitHub Desktop.
db.get('qualquercoisa', function(err, doc){
if(err && err.notFound)
console.log('Documento não encontrado.')
if(err && !err.notFound)
console.log('Aconteceu algum outro erro.');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment