class Sass::Script::Value::Base

def minus(other)

Returns:
  • (Script::Value::String) - A string containing both values

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