UNPKG

@lomray/microservice-gateway

Version:
13 lines (10 loc) 210 B
'use strict'; /** * Adds raw body to request */ const rawBodySaver = function (req, res, buf) { if (buf && buf.length) { req['rawBody'] = buf.toString(); } }; module.exports = rawBodySaver;