@gabeochoa/pyogibeop
v0.1.9
Published
Romanize Hangeul
Downloads
19
Maintainers
Readme
@gabeochoa/pyogibeop
Korean romanization utility for JavaScript
Usage
HTML
Include romanize.js
into your HTML page. All is set!
<script type="text/javascript" src="romanize.js"></script>
<script type="text/javascript">
// Converts to Latin script
romanize("안녕하세요?") //annyeonghaseyo?
</script>
Node.js / React
This module can be installed via npm:
$ npm install @gabeochoa/pyogibeop --save
var romanize = require('@gabeochoa/pyogibeop');
// Converts to Latin script
romanize("안녕하세요?") // annyeonghaseyo?
License
pyogibeop is released under the MIT License. © 2019 gabeochoa
Notes
- all rules came from the National Institute of Korean Language
- check you answers on here as they provide different romanizations depending on use
Changelog
0.1.9
- Reduce package size (was 4.41kb)
0.1.7
- Change way of compiling js to support usage
0.1.1
- Fix issue where punctuation would add 'undefined' to string
0.1.0
- Public release