Advertisement
Guest User

Untitled

a guest
Apr 30th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. if (command === 'create') {
  2. try {
  3. var createdAccount = createAccount({
  4. name: argv.name,
  5. username: argv.username,
  6. password: argv.password
  7. }, argv.masterPassword);
  8. console.log('Account created!');
  9. console.log(createdAccount);
  10. } catch (e) {
  11. console.log('Unable to create the account!');
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement