Rename emailOrToken -> tokenOrEmail

This commit is contained in:
Schuyler Cebulskie
2016-09-08 22:27:38 -04:00
parent 9309b702eb
commit d42b589528
2 changed files with 5 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@@ -112,7 +112,7 @@ class Client extends EventEmitter {
* much better to use a bot account rather than a user account.
* Bot accounts have higher rate limits and have access to some features user accounts don't have. User bots
* that are making a lot of API requests can even be banned.</warn>
* @param {string} emailOrToken The email or token used for the account. If it is an email, a password _must_ be
* @param {string} tokenOrEmail The token or email used for the account. If it is an email, a password _must_ be
* provided.
* @param {string} [password] The password for the account, only needed if an email was provided.
* @returns {Promise<string>}
@@ -126,9 +126,9 @@ class Client extends EventEmitter {
* const password = 'supersecret123';
* client.login(email, password);
*/
login(emailOrToken, password) {
if (password) return this.rest.methods.loginEmailPassword(emailOrToken, password);
return this.rest.methods.loginToken(emailOrToken);
login(tokenOrEmail, password = null) {
if (password) return this.rest.methods.loginEmailPassword(tokenOrEmail, password);
return this.rest.methods.loginToken(tokenOrEmail);
}
/**