const prettyPrintString = function (value: string): string {
  return `"${value}"`;
};

export {
  prettyPrintString
};
