@function hu-append($source, $target) {
  @if (type-of($source) == map and type-of($target) == map) {
    @return map-merge($source, $target);
  }

  @return join($source, $target);
}
