1.0.1 • Published 9 months ago

is99 v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

is99

Welcome to is99! 🎉

is99 is a library designed to check if a number is 99

Tests Coverage Downloads License

Installation

You can install is99 via npm:

npm install is99

Usage

Here's a simple example of how to use is99:

const is99 = require('is99');

console.log(is99(99)); // true, because 99 is 99!
console.log(is99(100)); // false, because 100 is not 99!
import is99 from 'is99';

console.log(is99(99)); // true, because 99 is 99!
console.log(is99(100)); // false, because 100 is not 99!

Contributing

Contributions are welcome! If you have a brilliant idea or found a bug, don't hesitate to open an issue or submit a pull request. Let's make is99 even more awesome together!

License

This project is licensed under the MIT License. Because sharing is caring!

Contact

For any questions, suggestions, or just to say hi, feel free to open an issue or contact the maintainer. We promise we don't bite!

Fun Fact

Did you know? The number 99 is used in many cultures to signify completeness or finality. So, using is99, you're not just checking a number, you're embracing a universal truth! 🎉

ES Module Usage

If you prefer using ES modules, here's how you can import and use is99: