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

/**
 * Replaces all occurrences of a string with a substring.
 * @see https://help.shopify.com/en/themes/liquid/filters/string-filters#replace
 */
export const replaceFormatter: Formatter = {
  name: "replace",
  read(str: string, value: string, replaceValue: string) {
    return str.replace(new RegExp(value, "g"), replaceValue);
  },
};
