class Sass::Tree::Visitors::ToCss

def rstrip!

Strip all trailing whitespace from the output string.
def rstrip!
  erase! @result.length - 1 - (@result.rindex(/[^\s]/) || -1)
end