grapheme-counter
v1.0.0
Published
This script allows to count graphemeClusters in a string or combined emojis as 1 character.
Downloads
2
Maintainers
Readme
Grapheme-Counter
Grapheme-Counter
is a JavaScript library that provides functions for giving the "correct" length of any strings bycounting grapheme clusters in strings, accounting for combined emoji sequences and diacritical marks. It offers two main methods of usage: as a standalone function or by extending the String.prototype
with a count
property.
Documentaion
Installation
You can install Grapheme-Counter via npm:
npm install grapheme-counter
Alternatively, you can directly include the GraphemeCounter.js file in your project.
API
initStringCountProperty()
Initializes the count property on the String.prototype, allowing direct usage on strings.countCharacters(str)
Counts the number of grapheme clusters in the input string str, accounting for combined emoji sequences and diacritical marks.str (String)
The input string to count grapheme clusters in. Returns an object with the following properties:count (Number)
The count of grapheme clusters in the input string. Example-Counts
Usage
Using String.prototype.count Property
// Import and initialize the count property on String.prototype
import { initStringCountProperty } from 'grapheme-counter';
initStringCountProperty();
// Use the count property directly on strings
const text = 'A flag 🏳️🌈!!!';
console.log(text.count); // Output: 11
Using countCharacters Function-return ({count})
// Import the countCharacters function
import { countCharacters } from 'grapheme-counter';
// Count grapheme clusters in a string
const text = 'A flag 🏳️🌈!!!';
const count = countCharacters(text).count;
console.log('Grapheme cluster count:', count); // Output: 11
Examples
Compatibility
- Requires ECMAScript 6 (ES6) support.
- Compatible with modern browsers and environments that support Unicode regular expressions.
License
Grapheme Counter is licensed under the MIT License.
Reporting Issues
If you encounter any bugs, have suggestions for improvements, or would like to request new features, please open an issue on GitHub. When reporting issues, please include detailed information such as:
- Steps to reproduce the issue
- Expected behavior
- Actual behavior
- Any error messages or console logs
Your feedback is valuable and helps improve the quality of the project. Thank you for contributing!
Contributing
We welcome contributions from the community! If you'd like to contribute to this project, please follow these guidelines:
- Fork the repository and clone it to your local machine.
- Create a new branch for your changes (
git checkout -b feature/your-feature-name
). - Make your changes and ensure they follow the project's coding style and conventions.
- Write tests for your changes if applicable (I know, I didn't).
- Commit your changes with a clear and descriptive message.
- Push your changes to your fork (
git push origin feature/your-feature-name
). - Submit a pull request to the main repository's
main
branch.
Please be respectful and constructive in your interactions with others. We appreciate your contributions and look forward to working with you!