Method: Sass::Script::Interpolation#children
- Defined in:
- lib/sass/script/interpolation.rb
#children ⇒ Array<Node>
Returns the three components of the interpolation, before, mid, and after.
49 50 51 |
# File 'lib/sass/script/interpolation.rb', line 49
def children
[@before, @mid, @after].compact
end
|