1.0.4 • Published 7 months ago

is-fifteen v1.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
7 months ago

What does this package do?

A simple package that checks if a given value is equal to 15. It returns true if the input equals 15, and false otherwise.


Why use this package?

This package is useful when you need a straightforward and reliable way to verify if a value is exactly 15. Whether for debugging, validation, or simple checks, isFifteen does the job quickly and cleanly.


How to install

Install the package using npm:

#npm
npm install is-fifteen


# yarn
yarn add is-fifteen

Examples

#true
isFifteen(15);
isFifteen(30/2);

#false
isFifteen('15');
isFifteen(fifteen);
isFifteen([15])
isFifteen("hello")
1.0.4

7 months ago

1.0.2

7 months ago

1.0.0

7 months ago