Romanizes Hangul (Korean) characters
npm install hangul-romanizationRomanizes Hangul (Korean) characters. The library converts using the Revised Romanization of Korean romanization system.
``bash`
npm install --save hangul-romanization
`
var hangulRomanization = require('hangul-romanization');
var romanization = hangulRomanization.convert('행복');
console.log(romanization); // 'haengbok'
`
`bash``
npm run build