Skip to content

Instantly share code, notes, and snippets.

@laser
Created December 31, 2014 18:31
Show Gist options
  • Save laser/69381dbe8c39b1319ad4 to your computer and use it in GitHub Desktop.
Save laser/69381dbe8c39b1319ad4 to your computer and use it in GitHub Desktop.
l
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