Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save deltaepsilon/d7f6d2502e183e955fa15c5504644ddc to your computer and use it in GitHub Desktop.
Save deltaepsilon/d7f6d2502e183e955fa15c5504644ddc 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