1.0.0 β€’ Published 2 months ago

grapheme-counter v1.0.0

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

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:

  1. Fork the repository and clone it to your local machine.
  2. Create a new branch for your changes (git checkout -b feature/your-feature-name).
  3. Make your changes and ensure they follow the project's coding style and conventions.
  4. Write tests for your changes if applicable (I know, I didn't).
  5. Commit your changes with a clear and descriptive message.
  6. Push your changes to your fork (git push origin feature/your-feature-name).
  7. 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!

1.0.0

2 months ago