discardComments

Removes comments in and around rules, selectors & declarations. Note that any special comments marked with ! are kept by default.

Example

Input

/*! license */
.box {
    /* Red headings */
    color: red;
}

Output

/*! license */
.box {
    color: red;
}