minifyFontValues
Normalizes font & font-family declarations, and can convert font weight keywords to numeric values.
Example
Input
.box {
font-family: "Helvetica Neue", Arial, Arial, sans-serif;
font-weight: normal;
}
Output
.box {
font-family: Helvetica Neue, Arial, sans-serif;
font-weight: 400;
}