is-unodd
v1.0.0
Published
Returns true if the given number is unodd.
Readme
is-unodd
Return true if the given number is unodd.
Install
Install with npm:
$ npm install --save is-unoddUsage
var isUnodd = require('is-unodd');
isUnodd(0);
//=> true
isUnodd('1');
//=> false
isUnodd(2);
//=> true
isUnodd('3');
//=> false