Skip to content

Commit

Permalink
feat: Add isEvenStrict function
Browse files Browse the repository at this point in the history
  • Loading branch information
Weetbix committed Mar 6, 2023
1 parent 8cf5449 commit 83955e4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test-monorepo/packages/is-even/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
export const isEven = (x: number) => x % 2 == 0;
export const isEven = (x: number) => x % 2 == 0;

export const isEvenStrict = (x: number) => x % 2 === 0;

0 comments on commit 83955e4

Please sign in to comment.