UNPKG
is-this-number-odd
Version:
latest (1.0.0)
1.0.0
This is an useful package which check if the given number is odd or not.
is-this-number-odd
/
index.js
3 lines
•
74 B
JavaScript
View Raw
1
2
3
module
.
exports
=
function
isOdd
(
number
) {
return
number
%
2
!==
0
; }