Skip to content

Commit

Permalink
chore: Add dummy add implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnns committed Aug 2, 2024
1 parent 6f1c065 commit 7db65f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Empty file added src/add.test.ts
Empty file.
3 changes: 3 additions & 0 deletions src/add.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const add = (a: number, b: number) => {
return a + b;
};
4 changes: 1 addition & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
export const add = (a: number, b: number) => {
return a + b;
}
export { add } from "./add.js";

0 comments on commit 7db65f4

Please sign in to comment.