GSI - Employe Self Service Mobile
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.

8 lines
196 B

2 months ago
  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. }