class Sass::Script::Value::Base

def div(other)

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

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