Method: Sass::Script::Value::Helpers#quoted_string
- Defined in:
- lib/sass/script/value/helpers.rb
#quoted_string(str) ⇒ Sass::Script::Value::String
Create a quoted string.
120 121 122 |
# File 'lib/sass/script/value/helpers.rb', line 120
def quoted_string(str)
Sass::Script::String.new(str, :string)
end
|