# File lib/sass/util.rb, line 146
    def round(value)
      # If the number is within epsilon of X.5, round up.
      return value.ceil if (value % 1) - 0.5 > -0.00001
      value.round
    end