uniqueSelectors

Naturally sorts selectors for every rule, and removes duplicates.

Example

Input

.box, .boxB, .boxA, .box {
    color: red;
}

Output

.box, .boxA, .boxB {
    color: red;
}