class Sass::Script::Value::Base
def eq(other)
-
(Sass::Script::Value::Bool)
- True if this value is the same as the other,
Parameters:
-
other
(Value
) -- The right-hand side of the operator
def eq(other) Sass::Script::Value::Bool.new(self.class == other.class && value == other.value) end