is-five
v1.0.0
Published
Check if a value is five (5), efficient and fast, minimal and lightweight.
Maintainers
Readme
is-five

Check if a value is five (5), efficient and fast, minimal and lightweight.
Install
Install with npm:
$ npm install --save is-fiveUsage
var isFive = require('is-five');
isFive(5);
//=> true
isFive('5');
//=> true
isFive(4);
//=> false
isFive('4');
//=> false
isFive(0);
//=> false
isFive(null);
//=> falseAbout
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Contributors
| Commits | Contributor | | --- | --- | | 1 | Joe-Moussally |
Running tests
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm testAuthor
Joe Moussally
License
Copyright © 2024, Joe Moussally. Released under the MIT License.
