UNPKG

leasot

Version:

Parse and output TODOs and FIXMEs from comments in your files

11 lines (9 loc) 292 B
var json2xml = require('json2xml'); module.exports = function (todos, config) { //jshint camelcase:false var str = json2xml(todos, { header: typeof config.header === 'undefined' ? true : config.header, attributes_key: config.attributes_key }); return str; };