class Sass::Script::Literal

def div(other)

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

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