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

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