Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gregros/char-info
Unicode character information library
https://github.com/gregros/char-info
parsing unicode-characters unicode-information
Last synced: 9 days ago
JSON representation
Unicode character information library
- Host: GitHub
- URL: https://github.com/gregros/char-info
- Owner: GregRos
- License: mit
- Created: 2017-05-03T16:35:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T00:43:00.000Z (almost 2 years ago)
- Last Synced: 2024-04-14T21:51:08.131Z (7 months ago)
- Topics: parsing, unicode-characters, unicode-information
- Language: TypeScript
- Size: 1.42 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# char-info
[![Travic CI](https://travis-ci.org/GregRos/char-info.svg?branch=master)](https://travis-ci.org/GregRos/char-info)
[![Codecov](https://codecov.io/gh/GregRos/char-info/branch/master/graph/badge.svg)](https://codecov.io/gh/GregRos/char-info/branch/master)
[![NPM](https://badge.fury.io/js/char-info.svg)](https://www.npmjs.com/package/char-info)[API Documentation](https://char-info.netlify.com/)
A library that gives you information about individual Unicode characters. It also provides a list of Unicode groupings and their names, including lists of categories, blocks, and scripts. This is also reflected in the library's type definition files.
You can use for stuff like:
1. Find out what language a character is in, such as Greek (α), Latin (a), Hebrew (א), and so on.
2. Whether it's a kind of punctuation, digit, letter, emoji, spacing mark, or something else
3. What Unicode character block it inhabits
4. If it's upper-case or lower-caseThe library only supports characters in the BMP. There are no plans to expanding it beyond the BMP.
In addition, the library provides basic ASCII character indicator functions, such as `isLetter`, `isUpper`, and so forth. These have really simple implementations and don't have the overhead of the Unicode indicators.
The library comes bundled with Unicode character information tables that originally came from the Unicode Character Database. This data can make bundles with the library being quite heavy. To counteract this, the library is built to leverage "tree shaking" or dead code elimination, which is used in all modern bundlers. Provided you only import the members you'll use, only some of the data will end up in your bundle. For example, if you just import the ASCII character indicators your bundle won't contain any Unicode data at all.
Enabling dead code elimination may require switching to ES2015 native modules. You'll need to look at your bundler's documentation for more information.
## Imports
The package has three paths you can import from:1. `char-info/ascii`, which contains indicator functions for ASCII characters and character codes.
2. `char-info/unicode`, which contain the special Unicode character indicators.
4. `char-info`, which re-exports everything.If you're using a properly configured bundler, you can import what you need from `char-info` and still take advantage of tree shaking.
## Usage - ASCII indicators
```typescript
import {isLetter, isUpper, isUpperCode} from "char-info"assert.isTrue(isLetter("a"));
assert.isTrue(isUpper("A"));
assert.isTrue(isUpperCode("A"));// You can also do it like this:
import * as AsciiInfo from "char-info/ascii";assert.isTrue(AsciiInfo.isLetterCode("a".charCodeAt(0));
```
## Usage - Unicode Indicators
Unicode indicators work a bit differently, and aren't just plain functions. Instead, each indicator has two members, `char` and `code`, for testing characters (in the form of strings) and character codes, respectively.
```typescript
import {uniIsLetter, uniIsDigit} from "char-info";assert.isTrue(uniIsLetter.char("א"));
assert.isTrue(uniIsDigit.char("٩"));
```