You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
396 B
14 lines
396 B
|
|
module.exports = createTabIdMiddleware
|
|
|
|
/**
|
|
* Returns a middleware that appends the DApp TabId to the request
|
|
* @param {{ tabId: number }} opts - The middleware options
|
|
* @returns {Function}
|
|
*/
|
|
function createTabIdMiddleware (opts) {
|
|
return function tabIdMiddleware (/** @type {any} */ req, /** @type {any} */ _, /** @type {Function} */ next) {
|
|
req.tabId = opts.tabId
|
|
next()
|
|
}
|
|
}
|
|
|