Method: Sass::Script::Value::Base#neq
- Defined in:
- lib/sass/script/value/base.rb
permalink #neq(other) ⇒ Sass::Script::Value::Bool
The SassScript !=
operation.
Note that this returns a Sass::Script::Value::Bool object,
not a Ruby boolean.
69 70 71 |
# File 'lib/sass/script/value/base.rb', line 69
def neq(other)
Sass::Script::Value::Bool.new(!eq(other).to_bool)
end
|