hangul-romanize
Version:
Romanize Hangul
15 lines (14 loc) • 347 B
JavaScript
import { Romanize } from "./Romanize";
import { Format } from "./constants";
// Directories
export * from './constants';
export * from './interfaces';
export * from './types';
// Files
export * from './Romanize';
var HangulRomanize = {
Romanize: Romanize,
Format: Format,
};
export default HangulRomanize;
module.exports = HangulRomanize;