Method: Interscript.transliterate

Defined in:
lib/interscript.rb

.transliterate(system_code, string, maps = {}, compiler: Interscript::Interpreter) ⇒ Object

Transliterates the string.



34
35
36
37
# File 'lib/interscript.rb', line 34

def transliterate(system_code, string, maps={}, compiler: Interscript::Interpreter)
  # The current best implementation is Interpreter
  load(system_code, maps, compiler: compiler).(string)
end