function _trySerializeResponse()

in src/RAPIDClient.js [207:213]


function _trySerializeResponse(body) {
  try {
    return JSON.stringify(body === undefined ? null : body);
  } catch (err) {
    throw new Error('Unable to stringify response body');
  }
}