Skip to content

Commit

Permalink
added hello world helper
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Jul 24, 2023
1 parent f0497de commit ae0873c
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 helloWorld(): string {
return 'Hello, World!';
}

0 comments on commit ae0873c

Please sign in to comment.