UNPKG

restify

Version:
28 lines (22 loc) 765 B
// Copyright 2012 Mark Cavage, Inc. All rights reserved. 'use strict'; ///--- Exports /** * JSON formatter. Will look for a toJson() method on the body. If one does not * exist then a JSON.stringify will be attempted. * * @public * @function formatJSON * @param {Object} req - the request object (not used) * @param {Object} res - the response object * @param {Object} body - response body * @returns {String} data */ function formatJSON(req, res, body) { var data = body ? JSON.stringify(body) : 'null'; // Setting the content-length header is not a formatting feature and should // be separated into another module res.setHeader('Content-Length', Buffer.byteLength(data)); return data; } module.exports = formatJSON;