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.
16 lines
391 B
16 lines
391 B
/**
|
|
* Returns a middleware that appends the DApp TabId to the request
|
|
*
|
|
* @param {{ tabId: number }} opts - The middleware options
|
|
* @returns {Function}
|
|
*/
|
|
export default function createTabIdMiddleware(opts) {
|
|
return function tabIdMiddleware(
|
|
/** @type {any} */ req,
|
|
/** @type {any} */ _,
|
|
/** @type {Function} */ next,
|
|
) {
|
|
req.tabId = opts.tabId;
|
|
next();
|
|
};
|
|
}
|
|
|