class Sass::Script::Value::Null
A SassScript object representing a null value.
def self.new
-
(Null)
- the {NULL} constant.
Other tags:
- Private: -
def self.new NULL end
def inspect
-
(String)
-
def inspect 'null' end
def null?
-
(Boolean)
- `true`
def null? true end
def to_bool
-
(Boolean)
- `false` (the Ruby boolean value)
def to_bool false end
def to_s(opts = {})
-
(String)
- '' (An empty string)
def to_s(opts = {}) '' end
def to_sass(opts = {})
def to_sass(opts = {}) 'null' end