0.1.1 • Published 1 year ago

@romanize/korean v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@romanize/korean

A utility library to romanize Korean Hangul to Latin characters.

Installation

npm install @romanize/korean

Usage

import { romanize } from '@romanize/korean';
romanize('안녕하세요'); // annyeonghaseyo

Romanization Systems

The two main Korean romanization systems are the Revised Romanization of Korean (RR) and McCune-Reischauer (MR). The library supports both systems.

By default, the Revised Romanization is used as it is the official romanization system of South Korea (Republic of Korea).

However, users can specify the system to use by passing in the system option.

import { romanize } from '@romanize/korean';
romanize('안녕하세요', { system: 'MR' }); // annyonghaseyo
0.1.2

9 months ago

0.1.1

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago

0.1.0

1 year ago

0.0.0

1 year ago