UNPKG

astro

Version:

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

10 lines (9 loc) 255 B
/** * Utilities for extracting information from `Request` */ /** * Returns the first value associated to the `x-forwarded-for` header. * * @param {Request} request */ export declare function getClientIpAddress(request: Request): string | undefined;