mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
92971d3c87
* Update eslint-plugin-import version * Convert JS files to use ESM * Update ESLint rules to check imports * Fix test:unit:global command env * Cleanup mock-dev script
15 lines
397 B
JavaScript
15 lines
397 B
JavaScript
|
|
export default 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()
|
|
}
|
|
}
|