UNPKG

postcss-no-singleline-comment

Version:
10 lines (9 loc) 242 B
const postcss = require('postcss') const MATCH = /^\s*\/\// module.exports = postcss.plugin('postcss-no-singleline-comment', () => { return root => { root.walkDecls(decl => { if (MATCH.test(decl.prop)) decl.remove() }) } })