Package Exports
- @gabeochoa/pyogibeop
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@gabeochoa/pyogibeop) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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 --savevar 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