説明なし
選択できるのは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. }