Skip to content

Instantly share code, notes, and snippets.

@laser
Created December 31, 2014 18:32
Show Gist options
  • Save laser/247172bfca7a35d052ce to your computer and use it in GitHub Desktop.
Save laser/247172bfca7a35d052ce to your computer and use it in GitHub Desktop.
m
function createAccount(email, password, done) {
var id = uuid();
async.waterfall([
_.partial(Services.Accounts.provision, email, password),
_.partial(Services.Notification.confirm, email)
],
_.partial(done, _, id, _));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment