test-openapi
Version:
Automated client requests
22 lines (16 loc) • 442 B
JavaScript
const LINE_SIZE = 78
// Horizontal line between sections
const HORIZONTAL_LINE = '\u2500'.repeat(LINE_SIZE)
// Full blocks filling lower|upper half of the line
const FULL_LOWER_LINE = '\u2584'.repeat(LINE_SIZE)
const FULL_UPPER_LINE = '\u2580'.repeat(LINE_SIZE)
// Long dash character
const SEPARATOR = ' \u2500\u2500 '
module.exports = {
HORIZONTAL_LINE,
FULL_LOWER_LINE,
FULL_UPPER_LINE,
LINE_SIZE,
SEPARATOR,
}