0.0.1 • Published 2 years ago

is-num-odd v0.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Welcome to isodd!

This package contains the method isodd, which returns true {boolean} if the integer | integer as string format is odd, false{boolean} otherwise

Usage

import { isOdd } from "isodd" console.log( isOdd(5) ); // will output => true console.log( isOdd(4) ); // will output => false

Happy coding..! ~Shivam Baghla