export function convertStringToBeautifyJson(value: string) {
  return JSON.stringify(value, null, 2);
}
