Newer
Older
express-blog / src / constants / htmlFormatConstants.js
@Jason Jason on 13 Jul 261 bytes deleted: src/api/posts.js
// constants/htmlFormatConstants.js
const BEAUTIFY_OPTIONS = {
  indent_size: 2,
  wrap_line_length: 80,
  end_with_newline: true,
};

const ERROR_MESSAGES = {
  BEAUTIFY_ERROR: "Beautify error:",
};

module.exports = {
  BEAUTIFY_OPTIONS,
  ERROR_MESSAGES,
};