hangulx
Version:
Providing various utilities for Hangul
13 lines (12 loc) • 676 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.fallingDiphthongDisassembleMap = exports.fallingDiphthongCharCodeSet = exports.fallingDiphthongCharCodes = exports.fallingDiphthongSet = exports.fallingDiphthongs = void 0;
// 하강이중모음(下降二重母音, falling diphthong)
var chars = ['ㅢ'];
exports.fallingDiphthongs = chars;
exports.fallingDiphthongSet = new Set(chars);
exports.fallingDiphthongCharCodes = chars.map(function (char) { return char.charCodeAt(0); });
exports.fallingDiphthongCharCodeSet = new Set(exports.fallingDiphthongCharCodes);
exports.fallingDiphthongDisassembleMap = new Map([
['ㅢ', 'ㅡㅣ'],
]);