# check-coprime

Checks if two numbers are coprime or not & return true or false (boolean type).


<code><img height="30" src="https://img.shields.io/badge/NPM-111111?style=for-the-badge&logo=npm&logoColor=#c63635"></code>  <code><img height="30" src="https://img.shields.io/badge/JavaScript-111111?style=for-the-badge&logo=javascript&logoColor=F7DF1E"></code>

---

## Installation
Install the package via npm:

```sh
npm i check-coprime
```
---

# Usage

```js
const iscop = require('check-coprime');

console.log(iscop.isCoprime(14, 15)); // Output: true
console.log(iscop.isCoprime(14, 21)); // Output: false
console.log(iscop.isCoprime(14, 28)); // Output: false
```