Method: Sass::Script::Value::Base#to_a
- Defined in:
- lib/sass/script/value/base.rb
#to_a ⇒ Array<Value>
Returns the value of this value as a list. Single values are considered the same as single-element lists.
205 206 207 |
# File 'lib/sass/script/value/base.rb', line 205
def to_a
[self]
end
|