mattbasta / crass

A CSS minifier and utility library for JavaScript
http://mattbasta.com/crass
MIT License
102 stars 6 forks source link

Merge longhand declarations into shorthand when all "pieces" of a sho… #55

Closed vctrshn closed 7 years ago

vctrshn commented 7 years ago

…rthand declaration are given

Ex. .foo { padding-bottom: 5px; padding-left: 10px; padding-right: 15px; padding-top: 20px; } becomes .foo { padding: '20px 15px 5px 10px'; }

mattbasta commented 7 years ago

Thanks! 🎉