Method: DeBiLinguifier#return_in_greek
- Defined in:
- lib/debilinguifier.rb
#return_in_greek(input) ⇒ Object
Return the phrase using the greek characters only
71 72 73 |
# File 'lib/debilinguifier.rb', line 71 def return_in_greek(input) input.tr('abehikmnoptxyz'.upcase, 'αβεηικμνορτχυζ'.upcase) end |