<===> input.scss
.a-#{quote('' + b)} {
  c: d;
}

.a-#{'' + b} {
  c: d;
}
<===> output.css
.a-b {
  c: d;
}

.a-b {
  c: d;
}