2 * Convert a list of arguments into a string seperated by dashes
3 * @param {String} $args - A list of arguments
4 * @returns {String} - The converted into a strings joined with dashes
6 @function dash-join($args...) {
11 @for $i from 1 through length($args) {
14 @if $e != null and $e != '' {
15 $result: if($i == 1 or $first-add == true, #{$e}, #{$result}#{$glue}#{$e});