| 123456789101112 |
- /*
- Helper methods for use in the other modules.
- */
- module.exports.formatResponse = function (obj, req, res) {
- res.header("Content-Type", 'application/json');
- if (req.query && req.query.f && req.query.f == 'pjson')
- res.send(JSON.stringify(obj, null, 4));
- else
- res.send(obj);
- }
|