Lines 726-766javascript
727 protoOf(LoginUserRequest).ga = function () {
730 protoOf(LoginUserRequest).ha = function () {
731 return this.username;
733 protoOf(LoginUserRequest).j19 = function () {
734 return this.password;
736 protoOf(LoginUserRequest).u19 = function (email, username, password) {
737 return new LoginUserRequest(email, username, password);
739 protoOf(LoginUserRequest).copy = function (email, username, password, $super) {
740 email = email === VOID ? this.email : email;
741 username = username === VOID ? this.username : username;
742 password = password === VOID ? this.password : password;
743 return this.u19(email, username, password);
745 protoOf(LoginUserRequest).toString = function () {
746 return 'LoginUserRequest(email=' + this.email + ', username=' + this.username + ', password=' + this.password + ')';
MediumSecret Pattern
Package contains a possible secret pattern.
kotlin/munchies-user-shared.jsView on unpkg · L746 748 protoOf(LoginUserRequest).hashCode = function () {
749 var result = getStringHashCode(this.email);
750 result = imul(result, 31) + getStringHashCode(this.username) | 0;
751 result = imul(result, 31) + getStringHashCode(this.password) | 0;
754 protoOf(LoginUserRequest).equals = function (other) {
757 if (!(other instanceof LoginUserRequest))
759 var tmp0_other_with_cast = other instanceof LoginUserRequest ? other : THROW_CCE();
760 if (!(this.email === tmp0_other_with_cast.email))
762 if (!(this.username === tmp0_other_with_cast.username))
764 if (!(this.password === tmp0_other_with_cast.password))