No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

json.js 196B

12345678
  1. "use strict";
  2. module.exports = json_target;
  3. json_target.description = "JSON representation";
  4. function json_target(root, options, callback) {
  5. callback(null, JSON.stringify(root, null, 2));
  6. }