minify
Version:
Minifier of js, css, html and img
28 lines (21 loc) • 551 B
JavaScript
/* сжимаем код через clean-css */
import assert from 'assert';
import Clean from 'clean-css';
/**
* minify css data.
*
* @param data
* @param userOptions - (optional) object that may contain a `css` key with an object of options
*/
export default (data, userOptions) => {
assert(data);
const options = userOptions?.css || {};
const {
styles,
errors,
} = new Clean(options).minify(data);
const [error] = errors;
if (error)
throw error;
return styles;
};