clean-css优化css
clean-css is a fast and efficient CSS optimizer for Node.js platform and any modern browser.
"clean-css": "5.2.4"
var CleanCSS = require('clean-css');
var input = 'a{font-weight:bold;}';
var options = { /* options */ };
var output = new CleanCSS(options).minify(input);
Comments