# File lib/backports/1.8.7/string/start_with.rb, line 3
    def start_with?(*prefixes)
      prefixes.any? do |prefix|
        if prefix.respond_to? :to_str
          prefix = prefix.to_str
          self[0, prefix.length] == prefix
        end
      end
    end