class Sass::Script::Literal

def or(other)

Returns:
  • (Literal) - The result of the logical or:

Parameters:
  • other (Literal) -- The right-hand side of the operator
def or(other)
  to_bool ? self : other
end