# File lib/sixarm_ruby_unaccent/string.rb, line 55
  def unaccent_via_split_map
    split(//u).map{|c| ACCENTMAP[c] || c }.join("")
  end