sassc-ruby
sassc-ruby copied to clipboard
API for reading Sass values?
Hi 👋 I'm wondering if there's an API that lets me read the compiled values of variables.
Something like:
raw_sass = '$hello: "World";'
Sassc::SOMETHING.parse(raw_sass).variables # => { "$hello" => #<SassString @value="World"> }
Does such an API exist?