Skip to content

Instantly share code, notes, and snippets.

@chriskk
Created March 26, 2013 02:40
Show Gist options
  • Save chriskk/5242700 to your computer and use it in GitHub Desktop.
Save chriskk/5242700 to your computer and use it in GitHub Desktop.
module Kana2rom
def is_hiragana?
self.each_char do |character|
if HiraganaCharacters.include?(character) == FALSE
return false
end
end
return true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment