• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict'
2
3const report = function (data, options) {
4  const defaults = {
5    indent: 2
6  }
7
8  const config = Object.assign({}, defaults, options)
9
10  const json = JSON.stringify(data, null, config.indent)
11  return {
12    report: json,
13    exitCode: 0
14  }
15}
16
17module.exports = report
18