UNPKG

@geniucode/common-utils

Version:

Common utils

14 lines 405 B
export const extractHeaders = (headerName, reqKey) => { return (req, res, next) => { const headerValue = req.headers[headerName]; if (!headerValue) { return next(); } if (!req.customHeaders) { req.customHeaders = {}; } req.customHeaders[reqKey] = headerValue; next(); }; }; //# sourceMappingURL=extract-headers.js.map