class Sass::Script::Value::Base

def unary_minus

Returns:
  • (Script::Value::String) - A string containing the value

Parameters:
  • other (Value) -- The right-hand side of the operator
def unary_minus
  Sass::Script::Value::String.new("-#{self}")
end