mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-02 21:26:42 +01:00
12 lines
339 B
JavaScript
Vendored
12 lines
339 B
JavaScript
Vendored
export default function middlewarePipeline(context, middleware, index) {
|
|
const nextMiddleware = middleware[index];
|
|
if (!nextMiddleware) {
|
|
return context.next;
|
|
}
|
|
return () => {
|
|
nextMiddleware({
|
|
...context,
|
|
next: middlewarePipeline(context, middleware, index + 1),
|
|
});
|
|
};
|
|
} |