Method: Sass::Script::Value::Map#eq
- Defined in:
- lib/sass/script/value/map.rb
permalink #eq(other)
42 43 44 |
# File 'lib/sass/script/value/map.rb', line 42
def eq(other)
Bool.new(other.is_a?(Map) && value == other.value)
end
|
42 43 44 |
# File 'lib/sass/script/value/map.rb', line 42
def eq(other)
Bool.new(other.is_a?(Map) && value == other.value)
end
|