module Sass::Script::Functions

def quote(str)

Other tags:
    See: #unquote -

Raises:
  • (ArgumentError) - if `str` isn't a string

Returns:
  • (String) -

Parameters:
  • str (String) --
def quote(str)
  assert_type str, :String
  Sass::Script::String.new(str.value, :string)
end