An open API service indexing awesome lists of open source software.

https://github.com/therufa/is-six

Don't know whether a value is 6 or not?
https://github.com/therufa/is-six

is-six javascript js npm six

Last synced: 5 months ago
JSON representation

Don't know whether a value is 6 or not?

Awesome Lists containing this project

README

          

# Six [![Node.js CI](https://github.com/therufa/six/actions/workflows/node.js.yml/badge.svg?branch=main)](https://github.com/therufa/six/actions/workflows/node.js.yml)
Don't know whether a value is six? This lib provides a simple solution for a hard problem

(not a meme)

# Installation

npm:
```
$ npm i is-six
```

or using yarn:
```
$ yarn add is-six
```

# How to use

```
import isSix from 'is-six';

console.log(isSix(5)); // false because obviously 5 isn't 6, but whatever
```