Method: Sass::Script::Value::Helpers#unquoted_string
- Defined in:
- lib/sass/script/value/helpers.rb
permalink #unquoted_string(str) ⇒ Sass::Script::Value::String Also known as: identifier
Create an unquoted string.
128 129 130 |
# File 'lib/sass/script/value/helpers.rb', line 128
def unquoted_string(str)
Sass::Script::String.new(str, :identifier)
end
|