class Sass::Script::Number

def inspect(opts = {})

Returns:
  • (String) - The representation
def inspect(opts = {})
  value = self.class.round(self.value)
  unitless? ? value.to_s : "#{value}#{unit_str}"
end