// eslint-disable-next-line @typescript-eslint/no-unused-vars
const prettyPrintUndefined = function (value: undefined): string {
  return 'undefined';
};

export {
  prettyPrintUndefined
};
