# File lib/facet/string/tab.rb, line 8
  def indent(n)  
    if n >= 0
      gsub(/^/, ' ' * n)
    else
      gsub(/^ {0,#{-n}}/, "")
    end
  end