UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

10 lines (9 loc) 253 B
import { NOOP_MIDDLEWARE_HEADER } from "../constants.js"; const NOOP_MIDDLEWARE_FN = async (_ctx, next) => { const response = await next(); response.headers.set(NOOP_MIDDLEWARE_HEADER, "true"); return response; }; export { NOOP_MIDDLEWARE_FN };