https://github.com/barbwire-1/grapheme-counter
Lightweight (1.6Kb) unicode relying grapheme cluster and emoji counter
https://github.com/barbwire-1/grapheme-counter
composed-emojis diacritical-marks grapheme-cluster string-length unicode
Last synced: 2 months ago
JSON representation
Lightweight (1.6Kb) unicode relying grapheme cluster and emoji counter
- Host: GitHub
- URL: https://github.com/barbwire-1/grapheme-counter
- Owner: BarbWire-1
- License: mit
- Created: 2024-03-19T15:47:27.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-19T19:19:14.000Z (about 1 year ago)
- Last Synced: 2025-01-10T23:26:37.880Z (4 months ago)
- Topics: composed-emojis, diacritical-marks, grapheme-cluster, string-length, unicode
- Language: JavaScript
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Grapheme-Counter
`Grapheme-Counter` is a lighweight JavaScript library (1.6Kb!) that provides functions for giving the "correct" length of any strings by counting grapheme clusters, 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](documentation.md)
***
## InstallationYou can install Grapheme-Counter via npm:
```bash
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](#examples)## Usage
In vanilla JS - copy the GraphemeCounter.js into your project.
In node require the package.Using String.prototype.count Property
```js
// Import and initialize the count property on String.prototype
import { initStringCountProperty } from 'GraphemeCounter.js';
initStringCountProperty();// Use the count property directly on strings
const text = 'A flag π³οΈβπ!!!';
console.log(text.count); // Output: 11
```
Using countCharacters Function-return ({count})
```js
// Import the countCharacters function
import { countCharacters } from 'GraphemeCounter.js';// Count grapheme clusters in a string
const text = 'A flag π³οΈβπ!!!';
const count = countCharacters(text).count;
console.log('Grapheme cluster count:', count); // Output: 11
```***
## ExamplesClick to view examples
const examples = {
Greek: "ΞΡιά ΟΞΏΟ ΞΟΟΞΌΞ΅",// 14
Korean: "μλ νμΈμ μΈμ",// 8
Hebrew: "Χ©ΧΧΧ Χ’ΧΧΧ",// 9
Arabic: "Ω Ψ±ΨΨ¨Ψ§ Ψ¨Ψ§ΩΨΉΨ§ΩΩ ",// 13
Russian: "ΠΡΠΈΠ²Π΅Ρ, ΠΌΠΈΡ",// 11
Japanese: "γγγ«γ‘γ―γδΈη",// 8
Chinese: "δ½ ε₯½οΌδΈη",// 5
RainbowFlag: "π³οΈβπ",// 1
Family: "π¨βπ©βπ§βπ¦π¨βπ¨βπ§βπ§π©βπ©βπ¦βπ¦π©βπ§βπ§π¨βπ¦βπ¦",// 5
Man: "π¨β",// 1
Text: "tex t",// 6
Click: "Μ°Click",// 5
Gujarati: "ΰͺΰ«ΰͺ¨ΰ« ΰͺΰ«ΰͺΰͺ°ΰͺΎΰͺ€ΰ«",// 7
Sinhala: "ΰΆ―ΰΆ±ΰ·ΰΆ±ΰ·ΰ·",//
Dream: "rΓͺve",// 4
Math: "βx β β: β(x_i) = β«(f(x) dx)",// 27
EgyptianHieroglyphs: "ππππ π£πππ",// 9
WavingIntlFlag1:"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f",// 1
WavingIntlFlag2:"π΄",// 1
BlackFlag: "π΄",// 1
testSinhala: "ΰΆ" // 1
};for (const [language, str] of Object.entries(examples)) {
console.log(str.count);
}
***
## 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](link-to-issues) 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 logsYour 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!