UCD (Unicode Character Database) fields for JavaScript.
Important
This is still in an very early development cycle! Currently this is generated using LLM's so there may be issues. We will work on getting it to be 100% reliable in the coming days.
npm install @ucdjs/ucd-fields
import type { ArabicShaping, BidiBrackets } from "@ucdjs/ucd-fields/v16";
import { ARABIC_SHAPING_FIELDS, BIDI_BRACKETS_FIELDS } from "@ucdjs/ucd-fields/v16";
console.log(ARABIC_SHAPING_FIELDS);
// => [
// "code_point",
// "schematic_name",
// "joining_type",
// "joining_group"
// ]
console.log(BIDI_BRACKETS_FIELDS);
// => [
// "code_point",
// "bidi_paired_bracket",
// "bidi_paired_bracket_type"
// ]
Published under MIT License.