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.

Parameters:

  • str (::String)

    A ruby string.

Returns:

Since:

  • 3.3.0



120
121
122
# File 'lib/sass/script/value/helpers.rb', line 120

def quoted_string(str)
  Sass::Script::String.new(str, :string)
end