UNPKG

korean-gotong

Version:

한글이 인생에 고통을 선사할 때마다 기능이 추가될 예정입니다.

22 lines (15 loc) 627 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Vowel = exports.Consonant = exports.AllExtendedB = void 0; var _UTF8Blocks = require("../../UTF8Blocks"); /** 한글 자모 확장 B - 옛한글 중성 영역 */ var Vowel = new _UTF8Blocks.UTF8Block(0xd7b0, 0xd7c6); /** 한글 자모 확장 B - 옛한글 종성 영역 */ exports.Vowel = Vowel; var Consonant = new _UTF8Blocks.UTF8Block(0xd7cb, 0xd7fb); /** 한글 자모 확장 B - 모든 영역 */ exports.Consonant = Consonant; var AllExtendedB = _UTF8Blocks.UTF8Block.join(Vowel, Consonant); exports.AllExtendedB = AllExtendedB;