Skip to content

Commit

Permalink
fix: add hello helper
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Jul 24, 2023
1 parent ba4b829 commit 85e8a70
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/helpers/general.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,7 @@ export function camelCaseToSnakeCase(obj: Record<string, any>): void {
obj[snakeKey] = value;
});
}

export function hello(name: string): string {
return `Hello, ${name}`;
}

0 comments on commit 85e8a70

Please sign in to comment.