Method: Sass::Script::Value::Map#eq

Defined in:
lib/sass/script/value/map.rb

#eq(other)

See Also:

  • Value#eq
[View source]

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