@spotxyz/hangul-romanization
Version:
Romanizes Hangul (Korean) characters
85 lines (84 loc) • 1.49 kB
JavaScript
;
/**
* @license MIT Copyright 2016 Daniel Imms (http://www.growingwiththeweb.com)
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.REVISED_ROMANIZATION_OF_KOREAN = void 0;
exports.REVISED_ROMANIZATION_OF_KOREAN = {
vowels: [
'a',
'ae',
'ya',
'yee',
'eo',
'e',
'yeo',
'ye',
'o',
'wa',
'wae',
'oe',
'yo',
'u',
'wo',
'we',
'wi',
'yu',
'eu',
'ui',
'i' // ㅣ
],
consonants: {
initial: [
'g',
'kk',
'n',
'd',
'tt',
'r',
'm',
'b',
'pp',
's',
'ss',
'',
'j',
'jj',
'ch',
'k',
't',
'p',
'h' // ㅎ
],
final: [
'',
'k',
'k',
'kt',
'n',
'nt',
'nh',
't',
'l',
'lk',
'lm',
'lp',
'lt',
'lt',
'lp',
'lh',
'm',
'p',
'pt',
't',
'tt',
'ng',
't',
't',
'k',
't',
'p',
'h' // ㅎ
]
}
};