blob: 70253723678448088ca104d26586eea855781f47 [file] [log] [blame]
"use strict";
module.exports = json_target;
json_target.description = "JSON representation";
function json_target(root, options, callback) {
callback(null, JSON.stringify(root, null, 2));
}