Skip to content

Commit

Permalink
fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ErnestTeluk committed Oct 29, 2024
1 parent 3107427 commit 6fe15d2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/lib/getTargetDir.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
export const getTargetDir = (targetDir: string | undefined) => {
return targetDir?.trim().replace(/\/+$/g, '');
};
export const getTargetDir = (targetDir: string | undefined) =>
targetDir?.trim().replace(/\/+$/g, '');

0 comments on commit 6fe15d2

Please sign in to comment.