sass 3.1.0.alpha.205 → 3.1.0.alpha.206
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/REVISION +1 -1
- data/VERSION +1 -1
- data/lib/sass/script/functions.rb +5 -2
- metadata +1 -1
data/REVISION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
57a9ce49cd27fe529b7638f94069840bef411b75
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.1.0.alpha.
|
1
|
+
3.1.0.alpha.206
|
@@ -1013,8 +1013,11 @@ module Sass::Script
|
|
1013
1013
|
# unquote("foo") => foo
|
1014
1014
|
# unquote(foo) => foo
|
1015
1015
|
def unquote(string)
|
1016
|
-
|
1017
|
-
|
1016
|
+
if string.is_a?(Sass::Script::String)
|
1017
|
+
Sass::Script::String.new(string.value, :identifier)
|
1018
|
+
else
|
1019
|
+
string
|
1020
|
+
end
|
1018
1021
|
end
|
1019
1022
|
declare :unquote, [:string]
|
1020
1023
|
|