# is-not-odd

> Checks for a non odd number

Latest version **1.0.4** (published 2020-08-17) · ISC license · 0 weekly downloads

## Install

```sh
npm install is-not-odd
pnpm add is-not-odd
yarn add is-not-odd
bun add is-not-odd
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.4 |
| Published | 2020-08-17 |
| First published | 2020-08-17 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=4 |
| Dependencies | 1 |
| Unpacked size | 6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Sean |
| Maintainers | scdales |
| Keywords | array, count, even, filter, integer, is, math, numeric, odd, string |

## Links

- npm: https://www.npmjs.com/package/is-not-odd
- Repository: https://github.com/Scdales/is-not-odd
- Homepage: https://github.com/Scdales/is-not-odd#readme
- Issues: https://github.com/Scdales/is-not-odd/issues
- npm.io page: https://npm.io/package/is-not-odd

## Dependencies (1)

- [is-number](https://npm.io/package/is-number.md) ^7.0.0

## Alternatives

- [memory-cache](https://npm.io/package/memory-cache.md) — 795.0K weekly downloads
- [@httptoolkit/proxy-agent](https://npm.io/package/@httptoolkit/proxy-agent.md) — 11.2K weekly downloads
- [express-cache-controller](https://npm.io/package/express-cache-controller.md) — 5.3K weekly downloads
- [http-cache-middleware](https://npm.io/package/http-cache-middleware.md) — 4.5K weekly downloads
- [cache2](https://npm.io/package/cache2.md) — 1.5K weekly downloads

## Recent versions

- 1.0.4 (latest) — 2020-08-17
- 1.0.3 — 2020-08-17
- 1.0.2 — 2020-08-17
- 1.0.1 — 2020-08-17
- 1.0.0 — 2020-08-17

## README

# is-not-odd [![NPM version](https://img.shields.io/npm/v/is-not-odd.svg?style=flat)](https://www.npmjs.com/package/is-not-odd) [![NPM monthly downloads](https://img.shields.io/npm/dm/is-not-odd.svg?style=flat)](https://npmjs.org/package/is-not-odd) [![NPM total downloads](https://img.shields.io/npm/dt/is-not-odd.svg?style=flat)](https://npmjs.org/package/is-not-odd)

> Returns false if the given number is odd, and is an integer that does not exceed the JavaScript MAXIMUM_SAFE_INTEGER.

Sick of complicated conditionals? Think modulus is something from 2001: A Space Odessey? Look no further!

Please consider following this project's author, [Sean](https://github.com/scdales), and consider starring the project to show your :heart: and support.

## Install

Install with [npm](https://www.npmjs.com/):

```sh
$ npm install --save is-not-odd
```

## Usage

Works with strings or numbers.

```js
const isNotOdd = require('is-not-odd');

console.log(isNotOdd('0')); //=> true
console.log(isNotOdd('2')); //=> true

console.log(isNotOdd(1)); //=> false
console.log(isNotOdd(3)); //=> false
```

## About

<details>
<summary><strong>Contributing</strong></summary>

Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).

</details>

<details>
<summary><strong>Running Tests</strong></summary>

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

```sh
$ npm install && npm test
```

</details>

<details>
<summary><strong>Building docs</strong></summary>

_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_

To generate the readme, run the following command:

```sh
$ npm install -g verbose/verb#dev verb-generate-readme && verb
```

</details>

### Author

**Sean**

* [LinkedIn Profile](https://linkedin.com/in/sean-daley-41120498)
* [GitHub Profile](https://github.com/scdales)

### License

Copyright © 2018, [Sean](https://github.com/scdales).
Released under the [MIT License](LICENSE).

---
_Source: https://npm.io/package/is-not-odd · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
