Skip to content

Rajath4/is_odd_check

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

is_odd_check

Install

Install with npm:

$ npm install --save is_odd_check

Usage

Works with strings or numbers.

const isOdd = require("is_odd_check");

console.log(isOdd("1")); //=> true
console.log(isOdd("3")); //=> true

console.log(isOdd(0)); //=> false
console.log(isOdd(2)); //=> false

About

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Running Tests

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:

$ npm install && npm test

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published