export function decodeStr(str: string) { return str .replaceAll("<", "<") .replaceAll("{", "{") .replaceAll("}", "}") .replaceAll(">", ">") .replaceAll("\\|", "|") }