import { Formatter } from "../../types/index.js";

/**
 * Appends characters to a string.
 * @see https://help.shopify.com/themes/liquid/filters/string-filters#append
 */
export const appendFormatter: Formatter = {
  name: "append",
  read(a: string, b: string) {
    return a + b;
  },
};
