Skip to content

Commit

Permalink
fix module error.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlabaj committed Nov 22, 2024
1 parent e2e553f commit 932ece8
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/utils/capitalize.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
function capitalize(input: string): string {
export function capitalize(input: string): string {
return input[0].toUpperCase() + input.substring(1);
}

module.exports = {
capitalize
};

0 comments on commit 932ece8

Please sign in to comment.