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