class Sass::Value::Null

Sass’s null type.

def self.new

def self.new
  NULL
end

def !

def !
  Boolean::TRUE
end

def ==(other)

def ==(other)
  other.is_a?(Sass::Value::Null)
end

def hash

def hash
  @hash ||= value.hash
end

def initialize

def initialize
  @value = nil
end

def to_bool

def to_bool
  false
end