Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save byteshiva/b5ccadeaa34f5ec8e2dc1fd108d1e08b to your computer and use it in GitHub Desktop.
Save byteshiva/b5ccadeaa34f5ec8e2dc1fd108d1e08b to your computer and use it in GitHub Desktop.
// Good
exports.sendEmail = functions.auth.user().onCreate(event => {
const mailgun = require('mailgun-js');
// ...
});
// Not As Awesome
const mailgun = require('mailgun-js');
exports.sendEmail = functions.auth.user().onCreate(event => {
// ...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment