'use strict'; const creator = () => ({ postcssPlugin: "postcss-remove-inline", Comment: (c) => { c.raws.inline && c.remove(); } }); creator.postcss = true; module.exports = creator;