UNPKG

is-this-number-odd

Version:

This is an useful package which check if the given number is odd or not.

3 lines 74 B
module.exports = function isOdd(number) { return number % 2 !== 0; }