class Asciidoctor::PathResolver

def is_unc? path

returns a Boolean indicating whether the path is a UNC path

path - the String path to check

Public: Determine if the path is a UNC (root) path
def is_unc? path
  path.start_with? DOUBLE_SLASH
end