mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/RoboCommander.git
synced 2026-06-15 16:36:01 +00:00
9 lines
204 B
JavaScript
9 lines
204 B
JavaScript
"use strict";
|
|
module.exports = json_target;
|
|
|
|
json_target.description = "JSON representation";
|
|
|
|
function json_target(root, options, callback) {
|
|
callback(null, JSON.stringify(root, null, 2));
|
|
}
|