is-not-odd-even-ts
v0.7.0
Published
Extends the functionality of is-odd-even-ts with useful functions that users may find helpful.
Downloads
2
Maintainers
Readme
Is Not Odd Even (TypeScript)
I have observed Is Odd Even TS and I have found it lacking. For this reason, Is Not Odd Even (Typescript) must exist. Feel free to commit! (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
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