This repository was archived by the owner on Aug 4, 2019. It is now read-only.

Description
This is often done (for example, to add space between inline-block or floated elements but to prevent the last from having orphaned space)
element
margin-right: 3px
&:last-child
margin-right: 0
Looking to replace that with something like:
element
@include all-but-last-child(margin-right, 3px)