export function beauty (variable: any, space: number = 2): string {
    let text = JSON.stringify(variable, null, space);

  // Split the resulting JSON string into lines
  const lines = text.split("\n");

  // Adjust the indentation of the last line
  if (lines.length > 1) {
    lines[lines.length - 1] = "      " + lines[lines.length - 1];
  }

  text = lines.join("\n");

  return text;
}