有没有scss转less的网站,直接转函数方法的哪种,或者下面这段代码转成less是怎么写

问题

有没有scss转less的网站,直接转函数方法的哪种,或者下面这段代码转成less是怎么写

scss

<style lang="scss">
$inputWidth: 200;

@function getProgress($inputWidth, $color) {
  $val: -5px 0 0 -10px $color;
  @for $i from 6 through $inputWidth {
    $val: #{$val}, -#{$i}px 0 0 -10px #{$color};
  }
  @return $val;
}
.box {
  width: #{$inputWidth}px;
  height: 40px;
  box-shadow: getProgress($inputWidth, #69eaab);
}
</style>