Skip to content

Commit

Permalink
ts-standard --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
simonppg committed Sep 13, 2023
1 parent 9d53a08 commit 8934d96
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/NoteValidator.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
export class NoteValidator {
isValid(note: string): boolean {
if(note < 'A' || note > 'G')
return false
isValid (note: string): boolean {
if (note < 'A' || note > 'G') { return false }
return true
}
}

0 comments on commit 8934d96

Please sign in to comment.