blob: 98bb0e3b3996eab1cd0910f65e2ba1abb8d8a53b (
plain) (
tree)
|
|
module.exports = createOriginMiddleware
/**
* Returns a middleware that appends the DApp origin to request
* @param {{ origin: string }} opts - The middleware options
* @returns {Function}
*/
function createOriginMiddleware (opts) {
return function originMiddleware (/** @type {any} */ req, /** @type {any} */ _, /** @type {Function} */ next) {
req.origin = opts.origin
next()
}
}
|