Method: Sass::Script::Color#div

Defined in:
lib/sass/script/color.rb

#div(other) ⇒ Object



57
58
59
60
61
62
63
# File 'lib/sass/script/color.rb', line 57

def div(other)
  if other.is_a? Sass::Script::String
    raise NoMethodError.new(nil, :div)
  else
    piecewise(other, :/)
  end
end