UNPKG
@dan73/is-positive
Version:
latest (1.0.1)
1.0.1
1.0.0
Is the given number is positive ?
github.com/ngimdock/first-npm-package
ngimdock/first-npm-package
@dan73/is-positive
/
index.ts
6 lines
(4 loc)
•
95 B
text/typescript
View Raw
1
2
3
4
5
6
const
isPositiveNumber
= (
num
:
number
) => {
return
num >
0
; };
export
{ isPositiveNumber };