# File lib/ruote/util/lookup.rb, line 91
  def Ruote.narrow_key (key)

    return 0 if key == '0'

    i = key.to_i
    return i if i != 0

    key
  end