We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
return
1 parent 82df5ef commit ddb99a2Copy full SHA for ddb99a2
src/jsToSassString.js
@@ -41,7 +41,7 @@ function jsToSassString(value) {
41
else if (isArray(value)) {
42
const sassVals = value.map(v => {
43
if (isNotUndefined(v)) {
44
- _jsToSassString(v, indentLevel)
+ return _jsToSassString(v, indentLevel)
45
}
46
}).filter(Boolean);
47
0 commit comments