const prettyPrintBoolean = function (value: boolean): string {
  return `${value}`;
};

export {
  prettyPrintBoolean
};
