Skip to content

tech4him1/unicode-tables

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

unicode-tables

This is a set of Unicode category tables based off of the unicode module, but it only contains the character values themselves, not all of the extra information. Therefor it is much smaller.

Usage

It is imported in the same way as the unicode module.

require('unicode-tables/category/So');

or

require('unicode-tables/category').So;

Example

Check if a character is a non-spacing mark:

const nonSpacing = new Set(require('unicode-tables/category/Mn'));
nonSpacing.has('\u0300'); // true

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published