convertValues
Converts between equivalent length, time & angle values. Note that *by default*, length values are not converted.
Example
Input
.box {
transition: color 500ms ease;
}Output
.box {
transition: color .5s ease;
}Converts between equivalent length, time & angle values. Note that *by default*, length values are not converted.
.box {
transition: color 500ms ease;
}.box {
transition: color .5s ease;
}