UNPKG

litenode

Version:

Lightweight and modular web framework

7 lines (6 loc) 228 B
export async function applyMiddleware(middlewareStack, nativeReq, nativeRes) { for (const middleware of middlewareStack) { await middleware(nativeReq, nativeRes) if (nativeRes.headersSent || nativeRes.finished) return } }