Add Cyrillic Extended-D (#1564)

except for U+1E04A and U+1E06C
This commit is contained in:
John McWilliams 2023-02-23 20:25:27 -05:00 committed by GitHub
parent c201701c6d
commit f0196ec1e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 70 additions and 3 deletions

View file

@ -1,4 +1,4 @@
import UnicodeDataIndex from "@unicode/unicode-14.0.0";
import UnicodeDataIndex from "@unicode/unicode-15.0.0";
export async function collectBlockData() {
const BlockData = [
@ -7,6 +7,7 @@ export async function collectBlockData() {
// Missing ranges in UnicodeDataIndex
[[0x10780, 0x107bf], "Latin Extended-F"],
[[0x1df00, 0x1dfff], "Latin Extended-G"],
[[0x1e030, 0x1e08f], "Cyrillic Extended-D"]
[[0x1fa70, 0x1faff], "Symbols and Pictographs Extended-A "],
[[0x1fb00, 0x1fbff], "Symbols for Legacy Computing"]
];

View file

@ -1,5 +1,5 @@
import ugc from "@unicode/unicode-14.0.0/General_Category/index.js";
import ucdNames from "@unicode/unicode-14.0.0/Names/index.js";
import ugc from "@unicode/unicode-15.0.0/General_Category/index.js";
import ucdNames from "@unicode/unicode-15.0.0/Names/index.js";
import { collectBlockData } from "./block-data.mjs";