class Sass::Script::Literal

def and(other)

Returns:
  • (Literal) - The result of a logical and:

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