is-not-odd-even-ts
Version:
Extends the functionality of is-odd-even-ts with useful functions that users may find helpful.
20 lines (13 loc) • 746 B
Markdown
# Is Not Odd Even (TypeScript)
I have observed [Is Odd Even TS](https://www.npmjs.com/package/is-not-odd-even-ts) and I have found it lacking. For this reason, Is Not Odd Even (Typescript) must exist. [Feel free to commit!](https://github.com/ernieIzde8ski/is-not-odd-even-ts) (I won't be accepting these "Pull" "Requests", so submit an issue asking to be marked as contributor & commit directly to master, following the commit name style guide)
## Installation
`npm i is-not-odd-even-ts`
## Usage
```js
const INOETS = require("is-not-odd-even-ts"); // JS
const INOETS = require("is-not-odd-even-ts"); // TS
INOETS.isEven(1) // false
INOETS.isOdd(2) // false
INOETS.isNotEven(1.2) // true
INOETS.isNotOdd(1) // false
```