Skip to content

Commit

Permalink
remove redundant condition
Browse files Browse the repository at this point in the history
  • Loading branch information
jingyi-gao-ttd committed Oct 17, 2023
1 parent f27192d commit 93532b2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion modules/uid2IdSystem_shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,6 @@ if (FEATURES.UID2_CSTG) {
static splitEmailIntoAddressAndDomain(email) {
const parts = email.split('@');
if (
!parts.length ||
parts.length !== 2 ||
parts.some((part) => part === '')
) { return; }
Expand Down

0 comments on commit 93532b2

Please sign in to comment.