emili
v1.0.1
Published
miliodosik
Readme
# Emoji Search
A simple JavaScript package for searching emojis based on keywords.
## Installation
To install the Emoji Search package, you can use npm:
```bash
npm install emoji-search
```
## Usage
You can use the `searchEmoji` function to search for emojis based on keywords. Here's how you can use it in your JavaScript code:
```javascript
const searchEmoji = require('emoji-search');
// Search for emojis based on keywords
console.log(searchEmoji('joy')); // Output: [ '😊' ]
console.log(searchEmoji('funny')); // Output: [ '😂' ]
```
## Contributing
Contributions are welcome! If you have any ideas, bug fixes, or improvements, feel free to open an issue or submit a pull request on [GitHub](https://github.com/your-username/emoji-search).
## License
This package is licensed under the [MIT License](https://opensource.org/licenses/MIT).