Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 274 Bytes

File metadata and controls

25 lines (19 loc) · 274 Bytes

Avoid negative conditionals

Bad:

function isEmailNotUsed(email: string): boolean {
  // ...
}

if (isEmailNotUsed(email)) {
  // ...
}

Good:

function isEmailUsed(email: string): boolean {
  // ...
}

if (!isEmailUsed(email)) {
  // ...
}