# File lib/asciidoctor/path_resolver.rb, line 136
  def is_root?(path)
    if @file_separator == BACKSLASH && path.match(WIN_ROOT_RE)
      true
    elsif path.start_with? SLASH
      true
    else
      false
    end
  end