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?
- Host: GitHub
- URL: https://github.com/therufa/is-six
- Owner: therufa
- License: mit
- Created: 2022-11-30T15:06:54.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-14T04:01:11.000Z (almost 3 years ago)
- Last Synced: 2025-10-19T05:10:50.508Z (8 months ago)
- Topics: is-six, javascript, js, npm, six
- Language: JavaScript
- Homepage:
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Six [](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
```