UNPKG

is-uneven

Version:
46 lines (29 loc) 726 B
# is-uneven > Return true if the given number is uneven. ## Install Install with [npm](https://www.npmjs.com/): ```sh $ npm install --save is-uneven ``` ## Usage ```js var isUneven = require('is-uneven'); isUneven(0); //=> false isUneven('1'); //=> true isUneven(2); //=> false isUneven('3'); //=> true ``` ## About ### Contributing 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. ### Author **ROBiMS** * [github/ROBiMS](https://github.com/ROBiMS) ### License Copyright © 2021, [github/ROBiMS](https://github.com/ROBiMS). Released under the [MIT License](LICENSE). ***