json.js 196 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 "use strict"; module.exports = json_target; json_target.description = "JSON representation"; function json_target(root, options, callback) { callback(null, JSON.stringify(root, null, 2)); }