sass-export icon indicating copy to clipboard operation
sass-export copied to clipboard

fix: filter out the comments of sass

Open zhouhuafei opened this issue 6 years ago • 1 comments

过滤掉sass文件中的注释

  • 使用getArray和getStructured时,发现被注释的内容也可以被解析。
  • 固增加此段代码,过滤掉sass文件中的注释。

zhouhuafei avatar Oct 08 '19 04:10 zhouhuafei

I'd add inline comment regex /\/\/.*/g instead of strContents = strContents.split(LINE_BREAK).filter(v=> v.indexOf('//') === -1).join(LINE_BREAK);

ihorbond avatar Jul 31 '20 22:07 ihorbond