Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 490 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 490 Bytes

hangul-romanization

Romanizes Hangul (Korean) characters. The library converts using the Revised Romanization of Korean romanization system.

Installing

npm install --save hangul-romanization

Usage

var hangulRomanization = require('hangul-romanization');

var romanization = hangulRomanization.convert('행복');
console.log(romanization); // 'haengbok'

Building

npm run build