# File lib/backports/1.8.7/string.rb, line 72
  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