UNPKG

dgeni-packages

Version:

A collection of dgeni packages for generating documentation from source code

10 lines 186 B
/** * @dgRenderFilter json * @description Convert the object to a JSON string */ module.exports = { name: 'json', process(obj) { return JSON.stringify(obj, null, ' '); } };