UNPKG

documentation

Version:
34 lines (30 loc) 766 B
'use strict'; var _walk = require('../walk'); /** * Formats documentation as a JSON string. * * @param {Array<Comment>} comments parsed comments * @returns {Promise<string>} * @name formats.json * @public * @example * var documentation = require('documentation'); * var fs = require('fs'); * * documentation.build(['index.js']) * .then(documentation.formats.json) * .then(output => { * // output is a string of JSON data * fs.writeFileSync('./output.json', output); * }); */ function json(comments) { (0, _walk.walk)(comments, comment => { delete comment.errors; if (comment.context) { delete comment.context.sortKey; } }); return Promise.resolve(JSON.stringify(comments, null, 2)); } module.exports = json;