# File lib/backports/1.8.7/string/end_with.rb, line 3
    def end_with?(*suffixes)
      suffixes.any? do |suffix|
        if suffix.respond_to? :to_str
          suffix = suffix.to_str
          self[-suffix.length, suffix.length] == suffix
        end
      end
    end