File size: 547 Bytes
be5030f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
'use strict'

class Section {
  constructor () {
    this.list = []
  }
  add (content) {
    const chalkFormat = require('./chalk-format')
    const arrayify = require('array-back')
    arrayify(content).forEach(line => this.list.push(line))
  }
  emptyLine () {
    this.list.push('')
  }
  header (text) {
    const chalk = require('chalk')
    if (text) {
      this.add(chalk.underline.bold(text))
      this.emptyLine()
    }
  }
  toString () {
    const os = require('os')
    return this.list.join(os.EOL)
  }
}

module.exports = Section