Skip to content

Commit

Permalink
linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shaselton-usds committed Aug 2, 2024
1 parent c425677 commit 768ca81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/versions/common/csv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,6 @@ export function isValidDate(value: string) {
}

export function matchesString(value: string, target: string) {
if(typeof value !== 'string') return false
if (typeof value !== "string") return false
return value.trim().toLocaleUpperCase() === target.trim().toLocaleUpperCase()
}

0 comments on commit 768ca81

Please sign in to comment.