# Is Two

This is an efficient package help you determine if a number is two or not!

## Install

```bash
npm install --save is-two
```

## Usage

```typescript
import { isTwo } from "is-two";
console.log(isTwo(1)); // false
console.log(isTwo(2)); // true
```
