UNPKG

hangulx

Version:

Providing various utilities for Hangul

18 lines (17 loc) 841 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.risingJDiphthongDisassembleMap = exports.risingJDiphthongCharCodeSet = exports.risingJDiphthongCharCodes = exports.risingJDiphthongSet = exports.risingJDiphthongs = void 0; // ㅣ([j])계 상승이중모음(上昇二重母音, rising diphthong) var chars = ['ㅑ', 'ㅕ', 'ㅛ', 'ㅠ', 'ㅒ', 'ㅖ']; exports.risingJDiphthongs = chars; exports.risingJDiphthongSet = new Set(chars); exports.risingJDiphthongCharCodes = chars.map(function (char) { return char.charCodeAt(0); }); exports.risingJDiphthongCharCodeSet = new Set(exports.risingJDiphthongCharCodes); exports.risingJDiphthongDisassembleMap = new Map([ ['ㅑ', 'ㅣㅏ'], ['ㅕ', 'ㅣㅓ'], ['ㅛ', 'ㅣㅗ'], ['ㅠ', 'ㅣㅜ'], ['ㅒ', 'ㅣㅐ'], ['ㅖ', 'ㅣㅔ'], ]);