Method: Sass::Script::Color#plus
- Defined in:
- lib/sass/script/color.rb
#plus(other) ⇒ Object
33 34 35 36 37 38 39 |
# File 'lib/sass/script/color.rb', line 33 def plus(other) if other.is_a? Sass::Script::String Sass::Script::String.new(self.to_s + other.to_s) else piecewise(other, :+) end end |