class Sass::Script::Value::Null

A SassScript object representing a null value.

def self.new

Returns:
  • (Null) - the {NULL} constant.

Other tags:
    Private: -
def self.new
  NULL
end

def inspect

Returns:
  • (String) -
def inspect
  'null'
end

def null?

Returns:
  • (Boolean) - `true`
def null?
  true
end

def to_bool

Returns:
  • (Boolean) - `false` (the Ruby boolean value)
def to_bool
  false
end

def to_s(opts = {})

Returns:
  • (String) - '' (An empty string)
def to_s(opts = {})
  ''
end

def to_sass(opts = {})

def to_sass(opts = {})
  'null'
end