## is-eq-five
[![License: WTFPL](https://img.shields.io/badge/License-WTFPL-brightgreen.svg)](http://www.wtfpl.net/about/)

A simple module to test if a given object is number 5

## Install

```bash
$ npm install is-eq-five
```

## Usage

```js
const is5 = require('is-eq-five');

is5(5);
// Returns true

is5(-1);
// Returns false

is5(null);
// Returns false

is5("5");
// Returns false

```

## Tests

```bash
$ npm test
```