Skip to content

Commit

Permalink
fix: verify if pnpm works fine
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertHernandez committed Nov 24, 2024
1 parent d8caa81 commit 0dd60f0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/is-positive-number/is-positive-number.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
export const isPositiveNumber = (value: number): boolean => {
const res = Math.sign(value) === 1;
return res;
return Math.sign(value) === 1;
};

0 comments on commit 0dd60f0

Please sign in to comment.