is-uneven
Version:
Checks if a number is uneven
46 lines (29 loc) • 726 B
Markdown
> Return true if the given number is uneven.
Install with [npm](https://www.npmjs.com/):
```sh
$ npm install --save is-uneven
```
```js
var isUneven = require('is-uneven');
isUneven(0);
//=> false
isUneven('1');
//=> true
isUneven(2);
//=> false
isUneven('3');
//=> true
```
Help with this big and important project is very appreciated. Feel free to [create an issue](../../issues/new) if there is one, there is none.
**ROBiMS**
* [github/ROBiMS](https://github.com/ROBiMS)
Copyright © 2021, [github/ROBiMS](https://github.com/ROBiMS).
Released under the [MIT License](LICENSE).
***