Package Exports
- is-odd
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-odd) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
is-odd

Returns true if the given number is odd.
Install
Install with npm:
$ npm install --save is-oddUsage
var isOdd = require('is-odd');
isOdd(0);
//=> false
isOdd('1');
//=> true
isOdd(2);
//=> false
isOdd('3');
//=> trueAbout
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Building docs
(This document was generated by verb-generate-readme (a verb generator), please don't edit the readme directly. Any changes to the readme must be made in .verb.md.)
To generate the readme and API documentation with verb:
$ npm install -g verb verb-generate-readme && verbRunning tests
Install dev dependencies:
$ npm install -d && npm testAuthor
Jon Schlinkert
License
Copyright © 2016, Jon Schlinkert. Released under the MIT license.
This file was generated by verb-generate-readme, v0.2.0, on December 07, 2016.