暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }